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

13071 lines
302 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2023-10-28 14:28:43 +00:00
#define STATE_COUNT 323
2023-10-21 20:38:20 +00:00
#define LARGE_STATE_COUNT 2
2023-10-28 14:28:43 +00:00
#define SYMBOL_COUNT 122
#define ALIAS_COUNT 0
2023-10-28 14:28:43 +00:00
#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,
sym_integer = 5,
sym_float = 6,
sym_string = 7,
anon_sym_true = 8,
anon_sym_false = 9,
anon_sym_LBRACK = 10,
anon_sym_COMMA = 11,
anon_sym_RBRACK = 12,
anon_sym_function = 13,
anon_sym_LT = 14,
anon_sym_GT = 15,
anon_sym_LBRACE = 16,
anon_sym_RBRACE = 17,
anon_sym_table = 18,
anon_sym_EQ = 19,
2023-10-28 14:28:43 +00:00
anon_sym_DOT = 20,
anon_sym_DOT_DOT = 21,
anon_sym_PLUS = 22,
anon_sym_DASH = 23,
anon_sym_STAR = 24,
anon_sym_SLASH = 25,
anon_sym_PERCENT = 26,
anon_sym_EQ_EQ = 27,
anon_sym_BANG_EQ = 28,
anon_sym_AMP_AMP = 29,
anon_sym_PIPE_PIPE = 30,
anon_sym_GT_EQ = 31,
anon_sym_LT_EQ = 32,
anon_sym_PLUS_EQ = 33,
anon_sym_DASH_EQ = 34,
anon_sym_if = 35,
anon_sym_elseif = 36,
anon_sym_else = 37,
anon_sym_while = 38,
anon_sym_for = 39,
anon_sym_asyncfor = 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_boolean = 88,
sym_list = 89,
sym_function = 90,
sym_table = 91,
sym_map = 92,
sym_sublist = 93,
sym_math = 94,
sym_math_operator = 95,
sym_logic = 96,
sym_logic_operator = 97,
sym_assignment = 98,
sym_assignment_operator = 99,
sym_if_else = 100,
sym_if = 101,
sym_else_if = 102,
sym_else = 103,
sym_function_call = 104,
sym_while = 105,
sym_for = 106,
sym_transform = 107,
sym_filter = 108,
sym_find = 109,
sym_remove = 110,
sym_select = 111,
sym_insert = 112,
sym_async = 113,
sym_tool = 114,
sym__tool_kind = 115,
aux_sym_root_repeat1 = 116,
aux_sym_item_repeat1 = 117,
aux_sym_list_repeat1 = 118,
aux_sym_function_repeat1 = 119,
aux_sym_map_repeat1 = 120,
aux_sym_if_else_repeat1 = 121,
};
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] = ")",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_table] = "table",
[anon_sym_EQ] = "=",
2023-10-28 14:28:43 +00:00
[anon_sym_DOT] = ".",
[anon_sym_DOT_DOT] = "..",
[anon_sym_PLUS] = "+",
[anon_sym_DASH] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_EQ] = "<=",
[anon_sym_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",
2023-10-28 14:28:43 +00:00
[anon_sym_asyncfor] = "async for",
[anon_sym_in] = "in",
[anon_sym_transform] = "transform",
[anon_sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[anon_sym_find] = "find",
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = "remove",
[anon_sym_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",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_function] = "function",
[sym_table] = "table",
[sym_map] = "map",
2023-10-28 14:28:43 +00:00
[sym_sublist] = "sublist",
[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_function_repeat1] = "function_repeat1",
[aux_sym_map_repeat1] = "map_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,
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_table] = anon_sym_table,
[anon_sym_EQ] = anon_sym_EQ,
2023-10-28 14:28:43 +00:00
[anon_sym_DOT] = anon_sym_DOT,
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT_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,
2023-10-28 14:28:43 +00:00
[anon_sym_asyncfor] = anon_sym_asyncfor,
[anon_sym_in] = anon_sym_in,
[anon_sym_transform] = anon_sym_transform,
[anon_sym_filter] = anon_sym_filter,
2023-10-18 22:18:41 +00:00
[anon_sym_find] = anon_sym_find,
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = anon_sym_remove,
[anon_sym_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,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_function] = sym_function,
[sym_table] = sym_table,
[sym_map] = sym_map,
2023-10-28 14:28:43 +00:00
[sym_sublist] = sym_sublist,
[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_function_repeat1] = aux_sym_function_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_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,
},
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_function] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
2023-10-28 14:28:43 +00:00
[anon_sym_DOT] = {
.visible = true,
.named = false,
},
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT_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,
},
2023-10-28 14:28:43 +00:00
[anon_sym_asyncfor] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_transform] = {
.visible = true,
.named = false,
},
[anon_sym_filter] = {
.visible = true,
.named = false,
},
2023-10-18 22:18:41 +00:00
[anon_sym_find] = {
.visible = true,
.named = false,
},
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = {
.visible = true,
.named = false,
},
2023-10-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,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
2023-10-28 14:28:43 +00:00
[sym_sublist] = {
.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,
},
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_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,
2023-10-22 20:50:09 +00:00
[4] = 2,
2023-10-28 14:28:43 +00:00
[5] = 2,
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,
2023-10-28 14:28:43 +00:00
[11] = 10,
2023-10-22 20:32:55 +00:00
[12] = 12,
2023-10-28 14:28:43 +00:00
[13] = 13,
[14] = 14,
2023-10-21 20:38:20 +00:00
[15] = 15,
2023-10-22 20:32:55 +00:00
[16] = 16,
2023-10-28 14:28:43 +00:00
[17] = 10,
[18] = 18,
2023-10-28 14:28:43 +00:00
[19] = 15,
[20] = 16,
[21] = 10,
[22] = 16,
[23] = 23,
2023-10-22 18:48:34 +00:00
[24] = 24,
2023-10-28 14:28:43 +00:00
[25] = 25,
[26] = 26,
[27] = 25,
[28] = 15,
[29] = 15,
[30] = 16,
2023-10-21 17:04:17 +00:00
[31] = 31,
2023-10-28 14:28:43 +00:00
[32] = 32,
2023-10-22 18:48:34 +00:00
[33] = 33,
[34] = 34,
2023-10-28 14:28:43 +00:00
[35] = 33,
[36] = 36,
[37] = 37,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
2023-10-28 14:28:43 +00:00
[48] = 47,
[49] = 47,
[50] = 47,
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] = 61,
[62] = 62,
[63] = 63,
2023-10-18 22:18:41 +00:00
[64] = 64,
[65] = 65,
2023-10-28 14:28:43 +00:00
[66] = 46,
[67] = 42,
2023-10-19 01:50:45 +00:00
[68] = 68,
2023-10-28 14:28:43 +00:00
[69] = 69,
[70] = 40,
[71] = 39,
[72] = 72,
2023-10-21 17:04:17 +00:00
[73] = 73,
2023-10-28 14:28:43 +00:00
[74] = 58,
[75] = 62,
[76] = 59,
[77] = 57,
[78] = 60,
[79] = 56,
[80] = 54,
[81] = 52,
[82] = 53,
[83] = 55,
[84] = 61,
[85] = 51,
[86] = 63,
[87] = 65,
[88] = 64,
2023-10-21 17:04:17 +00:00
[89] = 89,
[90] = 90,
[91] = 91,
[92] = 92,
2023-10-28 14:28:43 +00:00
[93] = 92,
2023-10-21 17:19:01 +00:00
[94] = 94,
2023-10-21 17:04:17 +00:00
[95] = 95,
2023-10-28 14:28:43 +00:00
[96] = 92,
[97] = 95,
[98] = 98,
2023-10-18 22:18:41 +00:00
[99] = 99,
2023-10-28 14:28:43 +00:00
[100] = 98,
[101] = 92,
[102] = 99,
[103] = 98,
[104] = 99,
[105] = 94,
[106] = 95,
[107] = 94,
[108] = 94,
[109] = 98,
[110] = 95,
[111] = 99,
[112] = 112,
[113] = 113,
[114] = 114,
[115] = 115,
2023-10-28 14:28:43 +00:00
[116] = 116,
[117] = 117,
[118] = 118,
[119] = 119,
2023-10-28 14:28:43 +00:00
[120] = 120,
[121] = 121,
[122] = 122,
2023-10-28 14:28:43 +00:00
[123] = 123,
[124] = 124,
[125] = 125,
[126] = 126,
[127] = 127,
[128] = 128,
[129] = 129,
[130] = 130,
[131] = 131,
[132] = 132,
2023-10-28 14:28:43 +00:00
[133] = 133,
[134] = 134,
[135] = 135,
2023-10-28 14:28:43 +00:00
[136] = 128,
2023-10-19 01:50:45 +00:00
[137] = 137,
2023-10-28 14:28:43 +00:00
[138] = 137,
[139] = 131,
[140] = 128,
[141] = 141,
[142] = 142,
[143] = 130,
[144] = 142,
[145] = 145,
[146] = 128,
[147] = 142,
[148] = 130,
[149] = 149,
[150] = 131,
[151] = 151,
[152] = 152,
[153] = 134,
[154] = 137,
[155] = 135,
[156] = 131,
[157] = 137,
[158] = 158,
[159] = 158,
[160] = 160,
[161] = 130,
[162] = 142,
[163] = 163,
[164] = 39,
[165] = 42,
2023-10-22 20:32:55 +00:00
[166] = 46,
2023-10-28 14:28:43 +00:00
[167] = 40,
[168] = 38,
[169] = 65,
[170] = 56,
[171] = 51,
[172] = 58,
[173] = 64,
[174] = 60,
[175] = 61,
[176] = 39,
[177] = 57,
[178] = 52,
[179] = 62,
[180] = 53,
[181] = 55,
[182] = 46,
[183] = 42,
[184] = 184,
2023-10-28 14:28:43 +00:00
[185] = 59,
[186] = 43,
[187] = 63,
[188] = 40,
[189] = 54,
[190] = 41,
[191] = 191,
[192] = 191,
[193] = 193,
2023-10-28 14:28:43 +00:00
[194] = 45,
[195] = 195,
[196] = 191,
[197] = 197,
[198] = 44,
[199] = 199,
2023-10-18 23:26:49 +00:00
[200] = 200,
2023-10-28 14:28:43 +00:00
[201] = 201,
2023-10-21 17:19:01 +00:00
[202] = 202,
2023-10-28 14:28:43 +00:00
[203] = 191,
[204] = 204,
[205] = 60,
[206] = 58,
[207] = 61,
[208] = 51,
[209] = 64,
[210] = 52,
2023-10-19 01:50:45 +00:00
[211] = 211,
2023-10-28 14:28:43 +00:00
[212] = 65,
[213] = 62,
[214] = 54,
[215] = 55,
[216] = 57,
[217] = 63,
[218] = 59,
[219] = 53,
[220] = 56,
2023-10-18 22:18:41 +00:00
[221] = 221,
2023-10-28 14:28:43 +00:00
[222] = 221,
[223] = 221,
[224] = 221,
2023-10-21 17:19:01 +00:00
[225] = 225,
[226] = 226,
[227] = 227,
2023-10-28 14:28:43 +00:00
[228] = 228,
2023-10-19 01:50:45 +00:00
[229] = 229,
[230] = 230,
2023-10-21 17:04:17 +00:00
[231] = 231,
2023-10-28 14:28:43 +00:00
[232] = 232,
2023-10-21 17:19:01 +00:00
[233] = 233,
2023-10-28 14:28:43 +00:00
[234] = 233,
[235] = 230,
[236] = 231,
[237] = 237,
2023-10-21 17:04:17 +00:00
[238] = 238,
2023-10-28 14:28:43 +00:00
[239] = 233,
[240] = 240,
[241] = 238,
[242] = 230,
[243] = 228,
[244] = 232,
[245] = 230,
2023-10-19 01:50:45 +00:00
[246] = 246,
2023-10-28 14:28:43 +00:00
[247] = 233,
[248] = 232,
[249] = 228,
[250] = 229,
[251] = 231,
[252] = 231,
[253] = 232,
[254] = 228,
[255] = 255,
[256] = 255,
[257] = 257,
[258] = 255,
[259] = 255,
[260] = 260,
2023-10-28 14:28:43 +00:00
[261] = 260,
[262] = 260,
[263] = 260,
[264] = 264,
[265] = 265,
[266] = 266,
[267] = 267,
[268] = 268,
[269] = 269,
[270] = 270,
[271] = 271,
[272] = 272,
[273] = 273,
[274] = 274,
[275] = 275,
[276] = 276,
[277] = 277,
[278] = 268,
[279] = 270,
[280] = 280,
[281] = 270,
[282] = 271,
[283] = 283,
[284] = 265,
[285] = 285,
[286] = 268,
[287] = 268,
[288] = 269,
[289] = 283,
[290] = 290,
[291] = 291,
[292] = 292,
[293] = 271,
[294] = 294,
[295] = 295,
[296] = 296,
[297] = 297,
[298] = 298,
[299] = 299,
[300] = 300,
[301] = 301,
[302] = 302,
[303] = 280,
[304] = 304,
[305] = 302,
[306] = 295,
[307] = 266,
[308] = 290,
[309] = 270,
[310] = 302,
[311] = 266,
[312] = 290,
[313] = 271,
[314] = 302,
[315] = 266,
[316] = 290,
[317] = 317,
[318] = 318,
[319] = 319,
[320] = 320,
[321] = 321,
[322] = 322,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-10-28 14:28:43 +00:00
if (eof) ADVANCE(22);
if (lookahead == '!') ADVANCE(8);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(23);
if (lookahead == '%') ADVANCE(61);
if (lookahead == '&') ADVANCE(6);
if (lookahead == '\'') ADVANCE(7);
if (lookahead == '(') ADVANCE(25);
if (lookahead == ')') ADVANCE(26);
if (lookahead == '*') ADVANCE(59);
if (lookahead == '+') ADVANCE(54);
if (lookahead == ',') ADVANCE(42);
if (lookahead == '-') ADVANCE(57);
if (lookahead == '.') ADVANCE(51);
if (lookahead == '/') ADVANCE(60);
if (lookahead == '<') ADVANCE(44);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(46);
if (lookahead == '[') ADVANCE(41);
if (lookahead == ']') ADVANCE(43);
if (lookahead == '`') ADVANCE(10);
if (lookahead == 'a') ADVANCE(32);
if (lookahead == 'e') ADVANCE(30);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '|') ADVANCE(35);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
2023-10-28 14:28:43 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-28 14:28:43 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 1:
2023-10-28 14:28:43 +00:00
if (lookahead == '!') ADVANCE(8);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '%') ADVANCE(61);
if (lookahead == '&') ADVANCE(6);
if (lookahead == '\'') ADVANCE(7);
if (lookahead == '(') ADVANCE(25);
if (lookahead == ')') ADVANCE(26);
if (lookahead == '*') ADVANCE(59);
if (lookahead == '+') ADVANCE(53);
if (lookahead == ',') ADVANCE(42);
if (lookahead == '-') ADVANCE(58);
if (lookahead == '.') ADVANCE(50);
if (lookahead == '/') ADVANCE(60);
if (lookahead == '<') ADVANCE(44);
if (lookahead == '=') ADVANCE(9);
if (lookahead == '>') ADVANCE(46);
if (lookahead == '[') ADVANCE(41);
if (lookahead == ']') ADVANCE(43);
if (lookahead == '`') ADVANCE(10);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '|') ADVANCE(35);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
2023-10-28 14:28:43 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 2:
2023-10-28 14:28:43 +00:00
if (lookahead == '!') ADVANCE(8);
if (lookahead == '%') ADVANCE(61);
if (lookahead == '&') ADVANCE(6);
if (lookahead == ')') ADVANCE(26);
if (lookahead == '*') ADVANCE(59);
if (lookahead == '+') ADVANCE(54);
if (lookahead == '-') ADVANCE(56);
if (lookahead == '.') ADVANCE(51);
if (lookahead == '/') ADVANCE(60);
if (lookahead == '<') ADVANCE(44);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(46);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '|') ADVANCE(16);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
END_STATE();
case 3:
2023-10-28 14:28:43 +00:00
if (lookahead == '!') ADVANCE(8);
if (lookahead == '%') ADVANCE(61);
if (lookahead == '&') ADVANCE(6);
if (lookahead == '*') ADVANCE(59);
if (lookahead == '+') ADVANCE(53);
if (lookahead == '-') ADVANCE(55);
if (lookahead == '.') ADVANCE(50);
if (lookahead == '/') ADVANCE(60);
if (lookahead == '<') ADVANCE(44);
if (lookahead == '=') ADVANCE(9);
if (lookahead == '>') ADVANCE(46);
if (lookahead == '|') ADVANCE(35);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 4:
2023-10-28 14:28:43 +00:00
if (lookahead == '"') ADVANCE(5);
if (lookahead == '\'') ADVANCE(7);
if (lookahead == '(') ADVANCE(25);
if (lookahead == ')') ADVANCE(26);
if (lookahead == ',') ADVANCE(42);
if (lookahead == '-') ADVANCE(17);
if (lookahead == '>') ADVANCE(45);
if (lookahead == '[') ADVANCE(41);
if (lookahead == ']') ADVANCE(43);
if (lookahead == '`') ADVANCE(10);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(36);
END_STATE();
case 5:
2023-10-28 14:28:43 +00:00
if (lookahead == '"') ADVANCE(40);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
2023-10-28 14:28:43 +00:00
if (lookahead == '&') ADVANCE(64);
END_STATE();
case 7:
2023-10-28 14:28:43 +00:00
if (lookahead == '\'') ADVANCE(40);
if (lookahead != 0) ADVANCE(7);
END_STATE();
case 8:
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(63);
END_STATE();
case 9:
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(62);
END_STATE();
case 10:
2023-10-28 14:28:43 +00:00
if (lookahead == '`') ADVANCE(40);
if (lookahead != 0) ADVANCE(10);
END_STATE();
case 11:
2023-10-28 14:28:43 +00:00
if (lookahead == 'f') ADVANCE(14);
END_STATE();
case 12:
2023-10-28 14:28:43 +00:00
if (lookahead == 'f') ADVANCE(71);
END_STATE();
case 13:
2023-10-28 14:28:43 +00:00
if (lookahead == 'i') ADVANCE(12);
END_STATE();
case 14:
if (lookahead == 'o') ADVANCE(15);
END_STATE();
case 15:
if (lookahead == 'r') ADVANCE(73);
END_STATE();
case 16:
if (lookahead == '|') ADVANCE(65);
END_STATE();
case 17:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
END_STATE();
case 18:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
END_STATE();
case 19:
if (eof) ADVANCE(22);
if (lookahead == '!') ADVANCE(8);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(23);
if (lookahead == '%') ADVANCE(61);
if (lookahead == '&') ADVANCE(6);
if (lookahead == '\'') ADVANCE(7);
if (lookahead == '(') ADVANCE(25);
if (lookahead == '*') ADVANCE(59);
if (lookahead == '+') ADVANCE(54);
if (lookahead == '-') ADVANCE(57);
if (lookahead == '.') ADVANCE(50);
if (lookahead == '/') ADVANCE(60);
if (lookahead == '<') ADVANCE(44);
if (lookahead == '=') ADVANCE(49);
if (lookahead == '>') ADVANCE(46);
if (lookahead == '[') ADVANCE(41);
if (lookahead == '`') ADVANCE(10);
if (lookahead == 'a') ADVANCE(32);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '|') ADVANCE(35);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-28 14:28:43 +00:00
lookahead == ' ') SKIP(19)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-28 14:28:43 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 20:
if (eof) ADVANCE(22);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(23);
if (lookahead == '\'') ADVANCE(7);
if (lookahead == '(') ADVANCE(25);
if (lookahead == '-') ADVANCE(17);
if (lookahead == '[') ADVANCE(41);
if (lookahead == '`') ADVANCE(10);
if (lookahead == 'a') ADVANCE(32);
if (lookahead == 'e') ADVANCE(30);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-28 14:28:43 +00:00
lookahead == ' ') SKIP(20)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-28 14:28:43 +00:00
('_' <= lookahead && lookahead <= '|')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 21:
if (eof) ADVANCE(22);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(23);
if (lookahead == '\'') ADVANCE(7);
if (lookahead == '(') ADVANCE(25);
if (lookahead == '-') ADVANCE(17);
if (lookahead == '[') ADVANCE(41);
if (lookahead == '`') ADVANCE(10);
if (lookahead == 'a') ADVANCE(32);
if (lookahead == '{') ADVANCE(47);
if (lookahead == '}') ADVANCE(48);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-28 14:28:43 +00:00
lookahead == ' ') SKIP(21)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-28 14:28:43 +00:00
('_' <= lookahead && lookahead <= '|')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 22:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-10-28 14:28:43 +00:00
case 23:
ACCEPT_TOKEN(aux_sym_comment_token1);
2023-10-28 14:28:43 +00:00
if (lookahead == '#') ADVANCE(23);
if (lookahead != 0 &&
2023-10-28 14:28:43 +00:00
lookahead != '\n') ADVANCE(24);
END_STATE();
2023-10-28 14:28:43 +00:00
case 24:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
2023-10-28 14:28:43 +00:00
lookahead != '\n') ADVANCE(24);
END_STATE();
2023-10-28 14:28:43 +00:00
case 25:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
2023-10-28 14:28:43 +00:00
case 26:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
2023-10-28 14:28:43 +00:00
case 27:
ACCEPT_TOKEN(sym_identifier);
2023-10-28 14:28:43 +00:00
if (lookahead == ' ') ADVANCE(11);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 28:
ACCEPT_TOKEN(sym_identifier);
2023-10-28 14:28:43 +00:00
if (lookahead == 'c') ADVANCE(27);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 29:
ACCEPT_TOKEN(sym_identifier);
2023-10-28 14:28:43 +00:00
if (lookahead == 'e') ADVANCE(72);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 30:
ACCEPT_TOKEN(sym_identifier);
2023-10-28 14:28:43 +00:00
if (lookahead == 'l') ADVANCE(33);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 31:
ACCEPT_TOKEN(sym_identifier);
2023-10-28 14:28:43 +00:00
if (lookahead == 'n') ADVANCE(28);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 32:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(34);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 33:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(29);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 34:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(31);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 35:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '|') ADVANCE(66);
if (lookahead == '.' ||
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 36:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 37:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '.' ||
('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(37);
END_STATE();
2023-10-28 14:28:43 +00:00
case 38:
ACCEPT_TOKEN(sym_integer);
2023-10-28 14:28:43 +00:00
if (lookahead == '.') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
END_STATE();
2023-10-28 14:28:43 +00:00
case 39:
ACCEPT_TOKEN(sym_float);
2023-10-28 14:28:43 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 40:
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-10-28 14:28:43 +00:00
case 41:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-10-28 14:28:43 +00:00
case 42:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-10-28 14:28:43 +00:00
case 43:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-10-28 14:28:43 +00:00
case 44:
ACCEPT_TOKEN(anon_sym_LT);
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(68);
END_STATE();
2023-10-28 14:28:43 +00:00
case 45:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
2023-10-28 14:28:43 +00:00
case 46:
ACCEPT_TOKEN(anon_sym_GT);
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(67);
END_STATE();
2023-10-28 14:28:43 +00:00
case 47:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-10-28 14:28:43 +00:00
case 48:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-10-28 14:28:43 +00:00
case 49:
ACCEPT_TOKEN(anon_sym_EQ);
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(62);
END_STATE();
2023-10-28 14:28:43 +00:00
case 50:
ACCEPT_TOKEN(anon_sym_DOT);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_DOT);
if (lookahead == '.') ADVANCE(52);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
2023-10-28 14:28:43 +00:00
case 54:
ACCEPT_TOKEN(anon_sym_PLUS);
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(69);
END_STATE();
2023-10-28 14:28:43 +00:00
case 55:
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
2023-10-28 14:28:43 +00:00
case 56:
ACCEPT_TOKEN(anon_sym_DASH);
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(70);
END_STATE();
2023-10-28 14:28:43 +00:00
case 57:
ACCEPT_TOKEN(anon_sym_DASH);
2023-10-28 14:28:43 +00:00
if (lookahead == '=') ADVANCE(70);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
END_STATE();
2023-10-28 14:28:43 +00:00
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
END_STATE();
case 59:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-10-28 14:28:43 +00:00
case 60:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-10-28 14:28:43 +00:00
case 61:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-10-28 14:28:43 +00:00
case 62:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 63:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 64:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-10-28 14:28:43 +00:00
case 65:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
2023-10-28 14:28:43 +00:00
case 66:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
2023-10-28 14:28:43 +00:00
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
2023-10-28 14:28:43 +00:00
case 67:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 68:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 69:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 70:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 71:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
2023-10-28 14:28:43 +00:00
case 72:
ACCEPT_TOKEN(anon_sym_else);
2023-10-28 14:28:43 +00:00
if (lookahead == ' ') ADVANCE(13);
if (lookahead == '|') ADVANCE(36);
if (lookahead == '.' ||
2023-10-28 14:28:43 +00:00
('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-28 14:28:43 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(36);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_asyncfor);
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},
2023-10-28 14:28:43 +00:00
[1] = {.lex_state = 21},
[2] = {.lex_state = 4},
[3] = {.lex_state = 4},
[4] = {.lex_state = 4},
[5] = {.lex_state = 4},
[6] = {.lex_state = 21},
[7] = {.lex_state = 21},
[8] = {.lex_state = 21},
[9] = {.lex_state = 21},
[10] = {.lex_state = 21},
[11] = {.lex_state = 21},
[12] = {.lex_state = 21},
[13] = {.lex_state = 21},
[14] = {.lex_state = 21},
[15] = {.lex_state = 21},
[16] = {.lex_state = 21},
[17] = {.lex_state = 21},
[18] = {.lex_state = 21},
[19] = {.lex_state = 21},
[20] = {.lex_state = 21},
[21] = {.lex_state = 21},
[22] = {.lex_state = 21},
[23] = {.lex_state = 21},
[24] = {.lex_state = 21},
[25] = {.lex_state = 21},
[26] = {.lex_state = 21},
[27] = {.lex_state = 21},
[28] = {.lex_state = 21},
[29] = {.lex_state = 21},
[30] = {.lex_state = 21},
[31] = {.lex_state = 21},
[32] = {.lex_state = 21},
[33] = {.lex_state = 21},
[34] = {.lex_state = 21},
[35] = {.lex_state = 21},
[36] = {.lex_state = 21},
[37] = {.lex_state = 21},
[38] = {.lex_state = 19},
[39] = {.lex_state = 19},
[40] = {.lex_state = 19},
[41] = {.lex_state = 19},
[42] = {.lex_state = 19},
[43] = {.lex_state = 19},
[44] = {.lex_state = 19},
[45] = {.lex_state = 19},
[46] = {.lex_state = 19},
[47] = {.lex_state = 1},
[48] = {.lex_state = 1},
[49] = {.lex_state = 1},
[50] = {.lex_state = 1},
[51] = {.lex_state = 19},
[52] = {.lex_state = 19},
[53] = {.lex_state = 19},
[54] = {.lex_state = 19},
[55] = {.lex_state = 19},
[56] = {.lex_state = 19},
[57] = {.lex_state = 19},
[58] = {.lex_state = 19},
[59] = {.lex_state = 19},
[60] = {.lex_state = 19},
[61] = {.lex_state = 19},
[62] = {.lex_state = 19},
[63] = {.lex_state = 19},
[64] = {.lex_state = 19},
[65] = {.lex_state = 19},
[66] = {.lex_state = 1},
[67] = {.lex_state = 1},
[68] = {.lex_state = 20},
[69] = {.lex_state = 20},
[70] = {.lex_state = 1},
[71] = {.lex_state = 1},
[72] = {.lex_state = 1},
[73] = {.lex_state = 20},
[74] = {.lex_state = 1},
[75] = {.lex_state = 1},
[76] = {.lex_state = 1},
[77] = {.lex_state = 1},
[78] = {.lex_state = 1},
[79] = {.lex_state = 1},
[80] = {.lex_state = 1},
[81] = {.lex_state = 1},
[82] = {.lex_state = 1},
[83] = {.lex_state = 1},
[84] = {.lex_state = 1},
[85] = {.lex_state = 1},
[86] = {.lex_state = 1},
[87] = {.lex_state = 1},
[88] = {.lex_state = 1},
[89] = {.lex_state = 20},
[90] = {.lex_state = 4},
[91] = {.lex_state = 20},
[92] = {.lex_state = 4},
[93] = {.lex_state = 4},
[94] = {.lex_state = 4},
[95] = {.lex_state = 4},
[96] = {.lex_state = 4},
[97] = {.lex_state = 4},
[98] = {.lex_state = 4},
[99] = {.lex_state = 4},
[100] = {.lex_state = 4},
[101] = {.lex_state = 4},
[102] = {.lex_state = 4},
[103] = {.lex_state = 4},
[104] = {.lex_state = 4},
[105] = {.lex_state = 4},
[106] = {.lex_state = 4},
[107] = {.lex_state = 4},
[108] = {.lex_state = 4},
[109] = {.lex_state = 4},
[110] = {.lex_state = 4},
[111] = {.lex_state = 4},
[112] = {.lex_state = 21},
[113] = {.lex_state = 21},
[114] = {.lex_state = 21},
[115] = {.lex_state = 21},
[116] = {.lex_state = 21},
[117] = {.lex_state = 21},
[118] = {.lex_state = 21},
[119] = {.lex_state = 21},
[120] = {.lex_state = 21},
[121] = {.lex_state = 21},
[122] = {.lex_state = 21},
[123] = {.lex_state = 21},
[124] = {.lex_state = 21},
[125] = {.lex_state = 21},
[126] = {.lex_state = 21},
[127] = {.lex_state = 21},
[128] = {.lex_state = 4},
[129] = {.lex_state = 4},
[130] = {.lex_state = 4},
[131] = {.lex_state = 4},
[132] = {.lex_state = 4},
[133] = {.lex_state = 4},
[134] = {.lex_state = 4},
[135] = {.lex_state = 4},
[136] = {.lex_state = 4},
[137] = {.lex_state = 4},
[138] = {.lex_state = 4},
[139] = {.lex_state = 4},
[140] = {.lex_state = 4},
[141] = {.lex_state = 4},
[142] = {.lex_state = 4},
[143] = {.lex_state = 4},
[144] = {.lex_state = 4},
[145] = {.lex_state = 4},
[146] = {.lex_state = 4},
[147] = {.lex_state = 4},
[148] = {.lex_state = 4},
[149] = {.lex_state = 4},
[150] = {.lex_state = 4},
[151] = {.lex_state = 4},
[152] = {.lex_state = 4},
[153] = {.lex_state = 4},
[154] = {.lex_state = 4},
[155] = {.lex_state = 4},
[156] = {.lex_state = 4},
[157] = {.lex_state = 4},
[158] = {.lex_state = 4},
[159] = {.lex_state = 4},
[160] = {.lex_state = 4},
[161] = {.lex_state = 4},
[162] = {.lex_state = 4},
[163] = {.lex_state = 21},
2023-10-21 17:19:01 +00:00
[164] = {.lex_state = 2},
[165] = {.lex_state = 2},
2023-10-21 17:19:01 +00:00
[166] = {.lex_state = 2},
[167] = {.lex_state = 2},
[168] = {.lex_state = 2},
2023-10-28 14:28:43 +00:00
[169] = {.lex_state = 2},
[170] = {.lex_state = 2},
2023-10-21 17:19:01 +00:00
[171] = {.lex_state = 2},
[172] = {.lex_state = 2},
[173] = {.lex_state = 2},
2023-10-28 14:28:43 +00:00
[174] = {.lex_state = 2},
[175] = {.lex_state = 2},
[176] = {.lex_state = 3},
[177] = {.lex_state = 2},
[178] = {.lex_state = 2},
[179] = {.lex_state = 2},
[180] = {.lex_state = 2},
[181] = {.lex_state = 2},
[182] = {.lex_state = 3},
[183] = {.lex_state = 3},
[184] = {.lex_state = 3},
[185] = {.lex_state = 2},
[186] = {.lex_state = 2},
[187] = {.lex_state = 2},
[188] = {.lex_state = 3},
[189] = {.lex_state = 2},
[190] = {.lex_state = 2},
[191] = {.lex_state = 2},
[192] = {.lex_state = 2},
[193] = {.lex_state = 2},
[194] = {.lex_state = 2},
[195] = {.lex_state = 2},
[196] = {.lex_state = 2},
[197] = {.lex_state = 2},
[198] = {.lex_state = 2},
[199] = {.lex_state = 2},
[200] = {.lex_state = 2},
[201] = {.lex_state = 2},
[202] = {.lex_state = 2},
[203] = {.lex_state = 2},
[204] = {.lex_state = 2},
[205] = {.lex_state = 3},
[206] = {.lex_state = 3},
[207] = {.lex_state = 3},
[208] = {.lex_state = 3},
[209] = {.lex_state = 3},
[210] = {.lex_state = 3},
[211] = {.lex_state = 2},
[212] = {.lex_state = 3},
[213] = {.lex_state = 3},
[214] = {.lex_state = 3},
[215] = {.lex_state = 3},
[216] = {.lex_state = 3},
[217] = {.lex_state = 3},
[218] = {.lex_state = 3},
[219] = {.lex_state = 3},
[220] = {.lex_state = 3},
[221] = {.lex_state = 2},
[222] = {.lex_state = 2},
[223] = {.lex_state = 2},
[224] = {.lex_state = 2},
[225] = {.lex_state = 4},
[226] = {.lex_state = 4},
[227] = {.lex_state = 4},
[228] = {.lex_state = 4},
[229] = {.lex_state = 4},
[230] = {.lex_state = 4},
[231] = {.lex_state = 4},
[232] = {.lex_state = 4},
[233] = {.lex_state = 4},
[234] = {.lex_state = 4},
[235] = {.lex_state = 4},
[236] = {.lex_state = 4},
[237] = {.lex_state = 4},
[238] = {.lex_state = 4},
[239] = {.lex_state = 4},
[240] = {.lex_state = 4},
[241] = {.lex_state = 4},
[242] = {.lex_state = 4},
[243] = {.lex_state = 4},
[244] = {.lex_state = 4},
[245] = {.lex_state = 4},
[246] = {.lex_state = 4},
[247] = {.lex_state = 4},
[248] = {.lex_state = 4},
[249] = {.lex_state = 4},
[250] = {.lex_state = 4},
[251] = {.lex_state = 4},
[252] = {.lex_state = 4},
[253] = {.lex_state = 4},
[254] = {.lex_state = 4},
[255] = {.lex_state = 4},
[256] = {.lex_state = 4},
[257] = {.lex_state = 4},
[258] = {.lex_state = 4},
[259] = {.lex_state = 4},
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},
[263] = {.lex_state = 0},
[264] = {.lex_state = 4},
[265] = {.lex_state = 4},
[266] = {.lex_state = 0},
[267] = {.lex_state = 0},
[268] = {.lex_state = 0},
[269] = {.lex_state = 4},
[270] = {.lex_state = 0},
[271] = {.lex_state = 0},
[272] = {.lex_state = 0},
[273] = {.lex_state = 4},
[274] = {.lex_state = 4},
[275] = {.lex_state = 0},
[276] = {.lex_state = 4},
[277] = {.lex_state = 4},
[278] = {.lex_state = 0},
[279] = {.lex_state = 0},
[280] = {.lex_state = 4},
[281] = {.lex_state = 0},
[282] = {.lex_state = 0},
[283] = {.lex_state = 4},
[284] = {.lex_state = 4},
[285] = {.lex_state = 0},
[286] = {.lex_state = 0},
[287] = {.lex_state = 0},
[288] = {.lex_state = 4},
[289] = {.lex_state = 4},
[290] = {.lex_state = 0},
[291] = {.lex_state = 0},
[292] = {.lex_state = 0},
[293] = {.lex_state = 0},
[294] = {.lex_state = 0},
[295] = {.lex_state = 0},
[296] = {.lex_state = 4},
[297] = {.lex_state = 4},
[298] = {.lex_state = 4},
[299] = {.lex_state = 4},
[300] = {.lex_state = 0},
[301] = {.lex_state = 4},
[302] = {.lex_state = 0},
[303] = {.lex_state = 4},
[304] = {.lex_state = 0},
[305] = {.lex_state = 0},
[306] = {.lex_state = 0},
[307] = {.lex_state = 0},
[308] = {.lex_state = 0},
[309] = {.lex_state = 0},
[310] = {.lex_state = 0},
[311] = {.lex_state = 0},
[312] = {.lex_state = 0},
[313] = {.lex_state = 0},
[314] = {.lex_state = 0},
[315] = {.lex_state = 0},
[316] = {.lex_state = 0},
[317] = {.lex_state = 0},
[318] = {.lex_state = 0},
[319] = {.lex_state = 0},
[320] = {.lex_state = 0},
[321] = {.lex_state = 0},
[322] = {.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),
[sym_integer] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
2023-10-28 14:28:43 +00:00
[anon_sym_DOT] = ACTIONS(1),
[anon_sym_DOT_DOT] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT_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),
2023-10-28 14:28:43 +00:00
[anon_sym_asyncfor] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_transform] = ACTIONS(1),
[anon_sym_filter] = ACTIONS(1),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(1),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(1),
[anon_sym_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] = {
2023-10-28 14:28:43 +00:00
[sym_root] = STATE(291),
[sym_item] = STATE(7),
2023-10-22 20:32:55 +00:00
[sym_statement] = STATE(27),
2023-10-28 14:28:43 +00:00
[sym_comment] = STATE(116),
[sym_expression] = STATE(45),
[sym__expression_kind] = STATE(63),
[sym_value] = STATE(63),
[sym_boolean] = STATE(55),
[sym_list] = STATE(55),
[sym_function] = STATE(55),
[sym_table] = STATE(55),
[sym_map] = STATE(55),
[sym_sublist] = STATE(63),
[sym_math] = STATE(63),
[sym_logic] = STATE(63),
[sym_assignment] = STATE(116),
[sym_if_else] = STATE(116),
[sym_if] = STATE(69),
[sym_function_call] = STATE(63),
[sym_while] = STATE(116),
[sym_for] = STATE(116),
[sym_transform] = STATE(116),
[sym_filter] = STATE(116),
[sym_find] = STATE(116),
[sym_remove] = STATE(116),
[sym_select] = STATE(116),
[sym_insert] = STATE(116),
[sym_async] = STATE(116),
[sym_tool] = STATE(63),
[aux_sym_root_repeat1] = STATE(7),
2023-10-22 20:32:55 +00:00
[aux_sym_item_repeat1] = STATE(27),
2023-10-21 17:04:17 +00:00
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
2023-10-28 14:28:43 +00:00
[anon_sym_asyncfor] = 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-22 20:41:37 +00:00
[0] = 14,
2023-10-21 20:38:20 +00:00
ACTIONS(45), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-22 20:41:37 +00:00
sym_integer,
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-22 20:41:37 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(98), 1,
2023-10-22 20:41:37 +00:00
sym__tool_kind,
2023-10-28 14:28:43 +00:00
STATE(211), 1,
2023-10-22 20:41:37 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-22 20:41:37 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-22 20:41:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-22 20:41:37 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(223), 7,
2023-10-22 20:41:37 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-22 20:41:37 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
ACTIONS(63), 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,
[85] = 14,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-22 20:41:37 +00:00
sym_integer,
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-22 20:41:37 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(65), 1,
2023-10-22 20:41:37 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(103), 1,
2023-10-22 20:41:37 +00:00
sym__tool_kind,
2023-10-28 14:28:43 +00:00
STATE(211), 1,
2023-10-22 20:41:37 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-22 20:41:37 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-22 20:41:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-22 20:41:37 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(222), 7,
2023-10-22 20:41:37 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-22 20:41:37 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
ACTIONS(67), 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,
[170] = 14,
2023-10-22 20:50:09 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-22 20:50:09 +00:00
sym_integer,
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:50:09 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:50:09 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-22 20:50:09 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(69), 1,
2023-10-22 20:50:09 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(100), 1,
2023-10-22 20:50:09 +00:00
sym__tool_kind,
2023-10-28 14:28:43 +00:00
STATE(211), 1,
2023-10-22 20:50:09 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-22 20:50:09 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(221), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(71), 31,
anon_sym_remove,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_workdir,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[255] = 14,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(73), 1,
sym_identifier,
STATE(109), 1,
sym__tool_kind,
STATE(211), 1,
sym_expression,
2023-10-22 20:50:09 +00:00
ACTIONS(51), 2,
2023-10-28 14:28:43 +00:00
sym_float,
sym_string,
ACTIONS(53), 2,
2023-10-22 20:50:09 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-22 20:50:09 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(224), 7,
2023-10-22 20:50:09 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-22 20:50:09 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
ACTIONS(75), 31,
2023-10-22 20:50:09 +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,
2023-10-28 14:28:43 +00:00
anon_sym_to_float,
2023-10-22 20:50:09 +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,
[340] = 29,
ACTIONS(77), 1,
2023-10-22 20:41:37 +00:00
ts_builtin_sym_end,
2023-10-28 14:28:43 +00:00
ACTIONS(79), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(82), 1,
2023-10-21 20:38:20 +00:00
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
ACTIONS(85), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(88), 1,
2023-10-21 20:38:20 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(97), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(100), 1,
2023-10-21 20:38:20 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(103), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(106), 1,
2023-10-21 20:38:20 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(109), 1,
2023-10-21 20:38:20 +00:00
anon_sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(112), 1,
2023-10-21 20:38:20 +00:00
anon_sym_while,
2023-10-28 14:28:43 +00:00
ACTIONS(115), 1,
2023-10-21 20:38:20 +00:00
anon_sym_for,
2023-10-28 14:28:43 +00:00
ACTIONS(118), 1,
anon_sym_asyncfor,
ACTIONS(121), 1,
2023-10-21 20:38:20 +00:00
anon_sym_transform,
2023-10-28 14:28:43 +00:00
ACTIONS(124), 1,
2023-10-21 20:38:20 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(127), 1,
2023-10-21 20:38:20 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(130), 1,
2023-10-21 20:38:20 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(133), 1,
2023-10-21 20:38:20 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(136), 1,
2023-10-21 20:38:20 +00:00
anon_sym_insert,
2023-10-28 14:28:43 +00:00
ACTIONS(139), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(91), 2,
2023-10-21 20:38:20 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(94), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_item,
aux_sym_root_repeat1,
2023-10-22 20:32:55 +00:00
STATE(27), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[453] = 29,
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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
ACTIONS(142), 1,
2023-10-21 20:38:20 +00:00
ts_builtin_sym_end,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_item,
aux_sym_root_repeat1,
2023-10-22 20:32:55 +00:00
STATE(27), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[566] = 28,
ACTIONS(146), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(149), 1,
2023-10-21 20:38:20 +00:00
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
ACTIONS(152), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-22 20:41:37 +00:00
ACTIONS(155), 1,
2023-10-28 14:28:43 +00:00
sym_integer,
ACTIONS(164), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(167), 1,
2023-10-21 20:38:20 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(170), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(173), 1,
2023-10-21 20:38:20 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(176), 1,
2023-10-21 20:38:20 +00:00
anon_sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(179), 1,
2023-10-21 20:38:20 +00:00
anon_sym_while,
2023-10-28 14:28:43 +00:00
ACTIONS(182), 1,
2023-10-21 20:38:20 +00:00
anon_sym_for,
2023-10-28 14:28:43 +00:00
ACTIONS(185), 1,
anon_sym_asyncfor,
ACTIONS(188), 1,
2023-10-21 20:38:20 +00:00
anon_sym_transform,
2023-10-28 14:28:43 +00:00
ACTIONS(191), 1,
2023-10-21 20:38:20 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(194), 1,
2023-10-21 20:38:20 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(197), 1,
2023-10-21 20:38:20 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(200), 1,
2023-10-21 20:38:20 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(203), 1,
2023-10-21 20:38:20 +00:00
anon_sym_insert,
2023-10-28 14:28:43 +00:00
ACTIONS(206), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(144), 2,
2023-10-22 20:32:55 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(158), 2,
2023-10-21 20:38:20 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(161), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(8), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[676] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
ACTIONS(209), 1,
anon_sym_RBRACE,
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(8), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[785] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(309), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[894] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(281), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-22 18:48:34 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-22 18:48:34 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-22 18:48:34 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-22 18:48:34 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1003] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-22 20:32:55 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-22 20:32:55 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-22 20:32:55 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-22 20:32:55 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-22 20:32:55 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-22 20:32:55 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-22 20:32:55 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-22 18:48:34 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-22 18:48:34 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(319), 1,
2023-10-22 20:32:55 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1112] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(318), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1221] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(317), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1330] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(278), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1439] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(271), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1548] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(270), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1657] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
ACTIONS(211), 1,
anon_sym_RBRACE,
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(9), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1766] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(268), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1875] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(293), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[1984] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(279), 1,
2023-10-22 18:48:34 +00:00
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2093] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(313), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2202] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(322), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2311] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(300), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2420] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
ACTIONS(213), 1,
anon_sym_RBRACE,
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(8), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2529] = 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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(321), 1,
2023-10-22 20:32:55 +00:00
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2638] = 8,
STATE(45), 1,
sym_expression,
STATE(69), 1,
sym_if,
STATE(8), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(55), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(63), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(213), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
STATE(116), 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,
2023-10-28 14:28:43 +00:00
ACTIONS(215), 16,
2023-10-22 18:48:34 +00:00
sym_identifier,
2023-10-22 20:32:55 +00:00
sym_integer,
2023-10-22 18:48:34 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 20:32:55 +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,
2023-10-22 18:48:34 +00:00
anon_sym_remove,
2023-10-22 20:32:55 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-28 14:28:43 +00:00
[2707] = 28,
2023-10-22 20:32:55 +00:00
ACTIONS(3), 1,
sym_identifier,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-22 20:32:55 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
2023-10-22 20:32:55 +00:00
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
2023-10-22 20:32:55 +00:00
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-22 20:32:55 +00:00
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
2023-10-22 20:32:55 +00:00
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-22 20:32:55 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-28 14:28:43 +00:00
STATE(287), 1,
2023-10-22 20:32:55 +00:00
sym_item,
ACTIONS(11), 2,
2023-10-21 20:38:20 +00:00
sym_float,
sym_string,
2023-10-22 20:32:55 +00:00
ACTIONS(13), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
2023-10-22 20:32:55 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2816] = 28,
ACTIONS(3), 1,
sym_identifier,
2023-10-21 17:19:01 +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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:19:01 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 17:19:01 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 17:19:01 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-21 17:19:01 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(41), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
anon_sym_async,
STATE(45), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
sym_if,
STATE(286), 1,
sym_item,
ACTIONS(11), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(13), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(55), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[2925] = 28,
ACTIONS(3), 1,
sym_identifier,
2023-10-21 17:19:01 +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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:19:01 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 17:19:01 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 17:19:01 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-21 17:19:01 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(41), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
anon_sym_async,
STATE(45), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
sym_if,
STATE(282), 1,
sym_item,
ACTIONS(11), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(13), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(55), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[3034] = 28,
ACTIONS(3), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:19:01 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-21 17:19:01 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-21 17:19:01 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-28 14:28:43 +00:00
anon_sym_remove,
ACTIONS(39), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
ACTIONS(41), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
ACTIONS(43), 1,
anon_sym_async,
2023-10-28 14:28:43 +00:00
STATE(45), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
sym_if,
2023-10-28 14:28:43 +00:00
STATE(320), 1,
sym_item,
ACTIONS(11), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(55), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[3143] = 28,
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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-22 18:48:34 +00:00
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_transform,
2023-10-22 18:48:34 +00:00
ACTIONS(33), 1,
2023-10-28 14:28:43 +00:00
anon_sym_filter,
2023-10-22 18:48:34 +00:00
ACTIONS(35), 1,
2023-10-28 14:28:43 +00:00
anon_sym_find,
ACTIONS(37), 1,
2023-10-22 18:48:34 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-22 20:32:55 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(41), 1,
2023-10-22 20:32:55 +00:00
anon_sym_insert,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
anon_sym_async,
STATE(45), 1,
2023-10-22 20:32:55 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(69), 1,
sym_if,
STATE(275), 1,
sym_item,
ACTIONS(11), 2,
2023-10-22 20:32:55 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(13), 2,
2023-10-22 20:32:55 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(25), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(55), 5,
2023-10-22 20:32:55 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-22 20:32:55 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-22 20:32:55 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
STATE(116), 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,
2023-10-28 14:28:43 +00:00
[3252] = 27,
ACTIONS(3), 1,
sym_identifier,
2023-10-22 20:32:55 +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,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(39), 1,
anon_sym_select,
ACTIONS(41), 1,
anon_sym_insert,
ACTIONS(43), 1,
anon_sym_async,
STATE(45), 1,
sym_expression,
STATE(69), 1,
sym_if,
STATE(115), 1,
sym_statement,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(55), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(63), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(116), 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,
[3357] = 27,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(43), 1,
anon_sym_async,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(217), 1,
sym_identifier,
ACTIONS(219), 1,
anon_sym_select,
ACTIONS(221), 1,
anon_sym_insert,
STATE(69), 1,
sym_if,
STATE(194), 1,
sym_expression,
STATE(304), 1,
sym_statement,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(116), 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,
[3462] = 27,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(43), 1,
anon_sym_async,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(217), 1,
sym_identifier,
ACTIONS(219), 1,
anon_sym_select,
ACTIONS(221), 1,
anon_sym_insert,
STATE(69), 1,
sym_if,
STATE(115), 1,
sym_statement,
STATE(194), 1,
sym_expression,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(116), 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,
[3567] = 27,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(43), 1,
anon_sym_async,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(217), 1,
sym_identifier,
ACTIONS(219), 1,
anon_sym_select,
ACTIONS(221), 1,
anon_sym_insert,
STATE(69), 1,
sym_if,
STATE(194), 1,
sym_expression,
STATE(272), 1,
sym_statement,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(116), 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,
[3672] = 27,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_transform,
ACTIONS(33), 1,
anon_sym_filter,
ACTIONS(35), 1,
anon_sym_find,
ACTIONS(37), 1,
anon_sym_remove,
ACTIONS(43), 1,
anon_sym_async,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(217), 1,
sym_identifier,
ACTIONS(219), 1,
anon_sym_select,
ACTIONS(221), 1,
anon_sym_insert,
STATE(69), 1,
sym_if,
STATE(194), 1,
sym_expression,
STATE(294), 1,
sym_statement,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(116), 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,
[3777] = 5,
ACTIONS(227), 1,
anon_sym_EQ,
STATE(33), 1,
sym_assignment_operator,
ACTIONS(229), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(223), 18,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(225), 21,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[3831] = 4,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(231), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(233), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[3881] = 9,
ACTIONS(241), 1,
anon_sym_DOT,
ACTIONS(245), 1,
anon_sym_DASH,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(235), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(237), 16,
sym_identifier,
sym_integer,
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,
[3941] = 10,
ACTIONS(241), 1,
anon_sym_DOT,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(253), 1,
anon_sym_LBRACE,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(249), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(251), 16,
sym_identifier,
sym_integer,
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,
[4003] = 9,
ACTIONS(241), 1,
anon_sym_DOT,
ACTIONS(245), 1,
anon_sym_DASH,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(255), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(257), 16,
sym_identifier,
sym_integer,
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,
[4063] = 10,
ACTIONS(241), 1,
anon_sym_DOT,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(263), 1,
anon_sym_LBRACE,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(259), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(261), 16,
sym_identifier,
sym_integer,
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,
[4125] = 9,
ACTIONS(241), 1,
anon_sym_DOT,
ACTIONS(245), 1,
anon_sym_DASH,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(265), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(267), 16,
sym_identifier,
sym_integer,
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,
[4185] = 9,
ACTIONS(241), 1,
anon_sym_DOT,
ACTIONS(245), 1,
anon_sym_DASH,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(269), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(271), 16,
sym_identifier,
sym_integer,
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,
[4245] = 4,
STATE(143), 1,
sym_math_operator,
STATE(144), 1,
sym_logic_operator,
ACTIONS(273), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(275), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4295] = 16,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(281), 1,
anon_sym_RPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
STATE(72), 1,
sym_expression,
STATE(110), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(223), 10,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[4368] = 16,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(297), 1,
anon_sym_RPAREN,
STATE(72), 1,
sym_expression,
STATE(106), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(223), 10,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[4441] = 16,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(299), 1,
anon_sym_RPAREN,
STATE(72), 1,
sym_expression,
STATE(95), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(223), 10,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[4514] = 16,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(301), 1,
anon_sym_RPAREN,
STATE(72), 1,
sym_expression,
STATE(97), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(223), 10,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[4587] = 2,
ACTIONS(303), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(305), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4631] = 2,
ACTIONS(307), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(309), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4675] = 2,
ACTIONS(311), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(313), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4719] = 2,
ACTIONS(315), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(317), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4763] = 2,
ACTIONS(319), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(321), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[4807] = 2,
ACTIONS(323), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
sym_float,
sym_string,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(325), 20,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
sym_integer,
2023-10-21 20:38:20 +00:00
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,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
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,
[4851] = 2,
ACTIONS(327), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(329), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4895] = 2,
ACTIONS(331), 19,
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,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(333), 20,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
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-28 14:28:43 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[4939] = 2,
ACTIONS(335), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(337), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
[4983] = 2,
ACTIONS(339), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
ACTIONS(341), 20,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
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-28 14:28:43 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[5027] = 2,
ACTIONS(343), 19,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(345), 20,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
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,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[5071] = 2,
ACTIONS(347), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
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,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(349), 20,
sym_identifier,
sym_integer,
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-21 17:04:17 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[5115] = 2,
ACTIONS(351), 19,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(353), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[5159] = 2,
ACTIONS(355), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(357), 20,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[5203] = 2,
ACTIONS(359), 19,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(361), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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,
2023-10-28 14:28:43 +00:00
[5247] = 4,
STATE(147), 1,
sym_logic_operator,
STATE(148), 1,
sym_math_operator,
ACTIONS(275), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(273), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[5286] = 9,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(363), 1,
anon_sym_DOT,
STATE(147), 1,
sym_logic_operator,
STATE(148), 1,
sym_math_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
ACTIONS(257), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(255), 8,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
[5335] = 6,
ACTIONS(369), 1,
anon_sym_elseif,
ACTIONS(371), 1,
anon_sym_else,
STATE(124), 1,
sym_else,
STATE(73), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(365), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(367), 16,
sym_identifier,
sym_integer,
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,
2023-10-28 14:28:43 +00:00
[5378] = 6,
ACTIONS(369), 1,
anon_sym_elseif,
ACTIONS(371), 1,
anon_sym_else,
STATE(122), 1,
sym_else,
STATE(68), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(373), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(375), 16,
sym_identifier,
sym_integer,
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,
2023-10-28 14:28:43 +00:00
[5421] = 9,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(363), 1,
anon_sym_DOT,
STATE(147), 1,
sym_logic_operator,
STATE(148), 1,
sym_math_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
ACTIONS(237), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(235), 8,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[5470] = 4,
STATE(147), 1,
sym_logic_operator,
STATE(148), 1,
sym_math_operator,
ACTIONS(233), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(231), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5509] = 10,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(363), 1,
anon_sym_DOT,
ACTIONS(381), 1,
anon_sym_COMMA,
STATE(147), 1,
sym_logic_operator,
STATE(148), 1,
sym_math_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
ACTIONS(377), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(379), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[5560] = 4,
ACTIONS(387), 1,
anon_sym_elseif,
STATE(73), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(383), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(385), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-28 14:28:43 +00:00
anon_sym_else,
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,
2023-10-28 14:28:43 +00:00
[5598] = 2,
ACTIONS(333), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(331), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5631] = 2,
ACTIONS(349), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(347), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5664] = 2,
ACTIONS(337), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(335), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5697] = 2,
ACTIONS(329), 10,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(327), 18,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-21 17:19:01 +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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5730] = 2,
ACTIONS(341), 10,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(339), 18,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-21 17:19:01 +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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5763] = 2,
ACTIONS(325), 10,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(323), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5796] = 2,
ACTIONS(317), 10,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_DASH,
2023-10-18 22:18:41 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(315), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_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,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5829] = 2,
ACTIONS(309), 10,
sym_identifier,
sym_integer,
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_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(307), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5862] = 2,
ACTIONS(313), 10,
sym_identifier,
sym_integer,
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_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(311), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5895] = 2,
ACTIONS(321), 10,
sym_identifier,
sym_integer,
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-28 14:28:43 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(319), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[5928] = 2,
ACTIONS(345), 10,
sym_identifier,
sym_integer,
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-28 14:28:43 +00:00
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(343), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT,
2023-10-19 01:50:45 +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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5961] = 2,
ACTIONS(305), 10,
sym_identifier,
2023-10-28 14:28:43 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(303), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT,
2023-10-21 20:38:20 +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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5994] = 2,
ACTIONS(353), 10,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
anon_sym_true,
2023-10-28 14:28:43 +00:00
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(351), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT,
2023-10-21 20:38:20 +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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[6027] = 2,
ACTIONS(361), 10,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(359), 18,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT,
2023-10-21 17:19:01 +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_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[6060] = 2,
ACTIONS(357), 10,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
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-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(355), 18,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_COMMA,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_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_GT_EQ,
anon_sym_LT_EQ,
[6093] = 2,
ACTIONS(390), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(392), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-28 14:28:43 +00:00
anon_sym_else,
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,
2023-10-28 14:28:43 +00:00
[6125] = 14,
ACTIONS(394), 1,
sym_identifier,
ACTIONS(397), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(402), 1,
sym_integer,
ACTIONS(411), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(414), 1,
anon_sym_function,
ACTIONS(417), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(420), 1,
anon_sym_table,
STATE(72), 1,
sym_expression,
STATE(90), 1,
aux_sym_list_repeat1,
ACTIONS(400), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
ACTIONS(405), 2,
sym_float,
sym_string,
ACTIONS(408), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6181] = 2,
ACTIONS(423), 10,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(425), 17,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
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,
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,
2023-10-28 14:28:43 +00:00
[6213] = 14,
ACTIONS(277), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(279), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 20:38:20 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 20:38:20 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 20:38:20 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(427), 1,
anon_sym_RBRACK,
STATE(72), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 20:38:20 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6268] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(429), 1,
2023-10-21 20:38:20 +00:00
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
sym_expression,
STATE(90), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
2023-10-21 20:38:20 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6323] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(431), 1,
anon_sym_RPAREN,
STATE(72), 1,
sym_expression,
STATE(90), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6378] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(433), 1,
anon_sym_RPAREN,
STATE(72), 1,
sym_expression,
STATE(90), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6433] = 14,
ACTIONS(277), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
ACTIONS(435), 1,
anon_sym_RBRACK,
STATE(72), 1,
sym_expression,
STATE(90), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6488] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(437), 1,
anon_sym_RPAREN,
STATE(72), 1,
sym_expression,
STATE(90), 1,
aux_sym_list_repeat1,
ACTIONS(285), 2,
sym_float,
sym_string,
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[6543] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(439), 1,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(107), 1,
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:04:17 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:04:17 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[6598] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(441), 1,
anon_sym_RBRACK,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(93), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6653] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(443), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(108), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6708] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(445), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6763] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(447), 1,
anon_sym_RBRACK,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(101), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6818] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(449), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(105), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6873] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(451), 1,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(92), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6928] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(453), 1,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[6983] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(455), 1,
anon_sym_RPAREN,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[7038] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(457), 1,
anon_sym_RPAREN,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[7093] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(459), 1,
anon_sym_RPAREN,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[7148] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(461), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(94), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[7203] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(463), 1,
anon_sym_RPAREN,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(90), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[7258] = 14,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(465), 1,
anon_sym_RBRACK,
STATE(72), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
STATE(96), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[7313] = 2,
ACTIONS(467), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(469), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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,
[7343] = 2,
ACTIONS(471), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(473), 16,
sym_identifier,
2023-10-28 14:28:43 +00:00
sym_integer,
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,
[7373] = 2,
ACTIONS(475), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(477), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +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,
[7403] = 2,
ACTIONS(479), 9,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(481), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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,
2023-10-28 14:28:43 +00:00
[7433] = 2,
ACTIONS(269), 9,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(271), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
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,
2023-10-28 14:28:43 +00:00
[7463] = 2,
ACTIONS(483), 9,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(485), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +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,
2023-10-28 14:28:43 +00:00
[7493] = 2,
ACTIONS(487), 9,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(489), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +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 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-28 14:28:43 +00:00
[7523] = 2,
ACTIONS(491), 9,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(493), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +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,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-28 14:28:43 +00:00
[7553] = 2,
ACTIONS(495), 9,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(497), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +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,
2023-10-28 14:28:43 +00:00
[7583] = 2,
ACTIONS(499), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(501), 16,
sym_identifier,
sym_integer,
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,
2023-10-28 14:28:43 +00:00
[7613] = 2,
ACTIONS(365), 9,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(367), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +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,
2023-10-28 14:28:43 +00:00
[7643] = 2,
ACTIONS(503), 9,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(505), 16,
sym_identifier,
2023-10-18 22:18:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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,
2023-10-28 14:28:43 +00:00
[7673] = 2,
ACTIONS(507), 9,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(509), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +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,
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,
2023-10-28 14:28:43 +00:00
[7703] = 2,
ACTIONS(511), 9,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(513), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +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,
2023-10-28 14:28:43 +00:00
[7733] = 2,
ACTIONS(515), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(517), 16,
sym_identifier,
sym_integer,
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,
2023-10-28 14:28:43 +00:00
[7763] = 2,
ACTIONS(519), 9,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(521), 16,
sym_identifier,
sym_integer,
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,
[7793] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(523), 1,
sym_identifier,
STATE(192), 1,
sym_expression,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7842] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(523), 1,
sym_identifier,
STATE(197), 1,
sym_expression,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7891] = 12,
ACTIONS(525), 1,
sym_identifier,
ACTIONS(527), 1,
anon_sym_LPAREN,
ACTIONS(529), 1,
sym_integer,
ACTIONS(535), 1,
anon_sym_LBRACK,
ACTIONS(537), 1,
anon_sym_function,
ACTIONS(539), 1,
anon_sym_LBRACE,
ACTIONS(541), 1,
anon_sym_table,
STATE(176), 1,
sym_expression,
ACTIONS(531), 2,
sym_float,
sym_string,
ACTIONS(533), 2,
anon_sym_true,
anon_sym_false,
STATE(215), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(217), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7940] = 12,
ACTIONS(525), 1,
sym_identifier,
ACTIONS(527), 1,
anon_sym_LPAREN,
ACTIONS(529), 1,
sym_integer,
ACTIONS(535), 1,
anon_sym_LBRACK,
ACTIONS(537), 1,
anon_sym_function,
ACTIONS(539), 1,
anon_sym_LBRACE,
ACTIONS(541), 1,
anon_sym_table,
STATE(182), 1,
sym_expression,
ACTIONS(531), 2,
sym_float,
sym_string,
ACTIONS(533), 2,
anon_sym_true,
anon_sym_false,
STATE(215), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(217), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7989] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(523), 1,
sym_identifier,
STATE(202), 1,
sym_expression,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8038] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
anon_sym_LBRACK,
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(523), 1,
sym_identifier,
STATE(204), 1,
sym_expression,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8087] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(543), 1,
sym_identifier,
STATE(41), 1,
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(55), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(63), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8136] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(543), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(43), 1,
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(63), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8185] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
sym_integer,
ACTIONS(55), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
anon_sym_function,
ACTIONS(59), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
anon_sym_table,
ACTIONS(523), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(203), 1,
sym_expression,
ACTIONS(51), 2,
sym_float,
sym_string,
ACTIONS(53), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(187), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8234] = 12,
ACTIONS(525), 1,
sym_identifier,
ACTIONS(527), 1,
anon_sym_LPAREN,
ACTIONS(529), 1,
sym_integer,
ACTIONS(535), 1,
anon_sym_LBRACK,
ACTIONS(537), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(539), 1,
anon_sym_LBRACE,
ACTIONS(541), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(183), 1,
sym_expression,
ACTIONS(531), 2,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(533), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(215), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(217), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8283] = 12,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
anon_sym_LPAREN,
ACTIONS(283), 1,
sym_integer,
ACTIONS(289), 1,
anon_sym_LBRACK,
ACTIONS(291), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
anon_sym_LBRACE,
ACTIONS(295), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(67), 1,
sym_expression,
ACTIONS(285), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(86), 7,
sym__expression_kind,
sym_value,
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8332] = 12,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-19 01:50:45 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(66), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8381] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(196), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-18 23:26:49 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[8430] = 12,
ACTIONS(47), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
2023-10-19 01:50:45 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(193), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8479] = 12,
ACTIONS(525), 1,
sym_identifier,
ACTIONS(527), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(529), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(535), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(537), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(539), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(541), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(188), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(531), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(533), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(215), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(217), 7,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-18 23:26:49 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[8528] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(543), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(39), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8577] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(543), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(40), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8626] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(201), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8675] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(191), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8724] = 12,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(70), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8773] = 12,
ACTIONS(277), 1,
sym_identifier,
ACTIONS(279), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(283), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(289), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(291), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(293), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(295), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(71), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(285), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(287), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(83), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(86), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8822] = 12,
ACTIONS(525), 1,
sym_identifier,
ACTIONS(527), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(529), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(535), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(537), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(539), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(541), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
STATE(184), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(531), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(533), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(215), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(217), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8871] = 12,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
ACTIONS(15), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-21 17:19:01 +00:00
ACTIONS(19), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(543), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(46), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
2023-10-21 17:19:01 +00:00
ACTIONS(11), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
2023-10-21 17:19:01 +00:00
ACTIONS(13), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-18 23:26:49 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[8920] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(199), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[8969] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(195), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9018] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(190), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9067] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(165), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9116] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(186), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9165] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(166), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9214] = 12,
ACTIONS(7), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(9), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(15), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(17), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(19), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(21), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(543), 1,
sym_identifier,
STATE(42), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(11), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(13), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9263] = 12,
2023-10-21 17:04:17 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(543), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(44), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(55), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(63), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9312] = 12,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
ACTIONS(49), 1,
sym_integer,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-22 20:41:37 +00:00
ACTIONS(57), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(198), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:04:17 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:04:17 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[9361] = 12,
ACTIONS(47), 1,
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
STATE(200), 1,
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-18 22:18:41 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[9410] = 12,
ACTIONS(47), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
STATE(164), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-18 23:26:49 +00:00
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-28 14:28:43 +00:00
[9459] = 12,
ACTIONS(47), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(57), 1,
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(523), 1,
sym_identifier,
STATE(167), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-28 14:28:43 +00:00
ACTIONS(51), 2,
sym_float,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(53), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
STATE(181), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-28 14:28:43 +00:00
STATE(187), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-28 14:28:43 +00:00
sym_sublist,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-28 14:28:43 +00:00
[9508] = 2,
ACTIONS(547), 7,
2023-10-21 17:19:01 +00:00
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
ACTIONS(545), 16,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
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,
2023-10-28 14:28:43 +00:00
[9536] = 4,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(233), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DOT,
ACTIONS(231), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9565] = 7,
ACTIONS(549), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(255), 4,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
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,
[9600] = 4,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
2023-10-28 14:28:43 +00:00
ACTIONS(275), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DOT,
ACTIONS(273), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9629] = 7,
ACTIONS(549), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(235), 4,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
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,
[9664] = 5,
ACTIONS(227), 1,
anon_sym_EQ,
STATE(35), 1,
sym_assignment_operator,
ACTIONS(229), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(225), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(223), 11,
anon_sym_RBRACE,
anon_sym_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9694] = 2,
ACTIONS(361), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(359), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9717] = 2,
ACTIONS(325), 3,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(323), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9740] = 2,
ACTIONS(305), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(303), 15,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9763] = 2,
ACTIONS(333), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(331), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9786] = 2,
ACTIONS(357), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(355), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9809] = 2,
ACTIONS(341), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(339), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
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,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:19:01 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9832] = 2,
ACTIONS(345), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DOT,
ACTIONS(343), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9855] = 4,
STATE(130), 1,
2023-10-21 17:19:01 +00:00
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(142), 1,
sym_logic_operator,
ACTIONS(233), 4,
sym_identifier,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(231), 12,
anon_sym_RBRACE,
anon_sym_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9882] = 2,
ACTIONS(329), 3,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(327), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
2023-10-21 17:19:01 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9905] = 2,
ACTIONS(309), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(307), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9928] = 2,
ACTIONS(349), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(347), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9951] = 2,
ACTIONS(313), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(311), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9974] = 2,
ACTIONS(321), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(319), 15,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[9997] = 4,
STATE(130), 1,
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(142), 1,
sym_logic_operator,
ACTIONS(275), 4,
sym_identifier,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(273), 12,
anon_sym_RBRACE,
anon_sym_DOT,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10024] = 8,
ACTIONS(255), 1,
anon_sym_RBRACE,
ACTIONS(257), 1,
sym_identifier,
ACTIONS(551), 1,
anon_sym_DOT,
STATE(130), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(142), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10059] = 8,
ACTIONS(551), 1,
anon_sym_DOT,
ACTIONS(553), 1,
sym_identifier,
ACTIONS(555), 1,
anon_sym_RBRACE,
STATE(130), 1,
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(142), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10094] = 2,
ACTIONS(337), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(335), 15,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10117] = 8,
ACTIONS(259), 1,
anon_sym_RBRACE,
ACTIONS(263), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(557), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10152] = 2,
ACTIONS(353), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(351), 15,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10175] = 8,
ACTIONS(235), 1,
anon_sym_RBRACE,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(551), 1,
anon_sym_DOT,
STATE(130), 1,
sym_math_operator,
STATE(142), 1,
sym_logic_operator,
ACTIONS(239), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10210] = 2,
ACTIONS(317), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
ACTIONS(315), 15,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10233] = 8,
ACTIONS(249), 1,
anon_sym_RBRACE,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(557), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10268] = 7,
ACTIONS(549), 1,
anon_sym_DOT,
ACTIONS(559), 1,
anon_sym_DOT_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 6,
2023-10-21 17:19:01 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10300] = 7,
ACTIONS(549), 1,
anon_sym_DOT,
ACTIONS(561), 1,
anon_sym_DOT_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10332] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(563), 1,
anon_sym_LBRACE,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10364] = 7,
ACTIONS(269), 1,
anon_sym_RBRACE,
ACTIONS(557), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10396] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(565), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
STATE(161), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10428] = 7,
ACTIONS(549), 1,
anon_sym_DOT,
ACTIONS(567), 1,
anon_sym_DOT_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 6,
2023-10-21 17:19:01 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10460] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(569), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
STATE(161), 1,
2023-10-21 17:19:01 +00:00
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10492] = 7,
ACTIONS(265), 1,
anon_sym_RBRACE,
ACTIONS(557), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
2023-10-19 01:50:45 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 6,
2023-10-19 01:50:45 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10524] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(571), 1,
anon_sym_LBRACE,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10556] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(573), 1,
anon_sym_LBRACE,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 6,
2023-10-21 17:04:17 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10588] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(575), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
STATE(161), 1,
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10620] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(577), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
STATE(161), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-28 14:28:43 +00:00
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
ACTIONS(247), 6,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10652] = 7,
ACTIONS(549), 1,
anon_sym_DOT,
ACTIONS(579), 1,
anon_sym_DOT_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10684] = 7,
ACTIONS(557), 1,
anon_sym_DOT,
ACTIONS(581), 1,
anon_sym_LBRACE,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10716] = 2,
ACTIONS(341), 4,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:19:01 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(339), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10737] = 2,
ACTIONS(333), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(331), 12,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10758] = 2,
ACTIONS(345), 4,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(343), 12,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10779] = 2,
ACTIONS(305), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(303), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10800] = 2,
ACTIONS(357), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(355), 12,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10821] = 2,
ACTIONS(309), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(307), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10842] = 6,
ACTIONS(557), 1,
anon_sym_DOT,
STATE(161), 1,
sym_math_operator,
STATE(162), 1,
sym_logic_operator,
ACTIONS(239), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(243), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-28 14:28:43 +00:00
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,
2023-10-28 14:28:43 +00:00
[10871] = 2,
ACTIONS(361), 4,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(359), 12,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10892] = 2,
ACTIONS(349), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(347), 12,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10913] = 2,
ACTIONS(317), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(315), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10934] = 2,
ACTIONS(321), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(319), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10955] = 2,
ACTIONS(329), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(327), 12,
anon_sym_RBRACE,
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10976] = 2,
ACTIONS(353), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(351), 12,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[10997] = 2,
ACTIONS(337), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(335), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[11018] = 2,
ACTIONS(313), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(311), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[11039] = 2,
ACTIONS(325), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
ACTIONS(323), 12,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[11060] = 3,
ACTIONS(583), 1,
anon_sym_RPAREN,
ACTIONS(353), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(351), 12,
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[11082] = 3,
ACTIONS(585), 1,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(353), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(351), 12,
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[11104] = 3,
ACTIONS(587), 1,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(353), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(351), 12,
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[11126] = 3,
ACTIONS(589), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
ACTIONS(353), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
ACTIONS(351), 12,
anon_sym_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[11148] = 2,
ACTIONS(591), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(400), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11166] = 2,
ACTIONS(595), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(593), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-28 14:28:43 +00:00
[11182] = 2,
ACTIONS(599), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(597), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-28 14:28:43 +00:00
[11198] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(603), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
aux_sym_function_repeat1,
[11208] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(605), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(238), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11218] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(607), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(252), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11228] = 3,
ACTIONS(601), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(609), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11238] = 3,
ACTIONS(611), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(613), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
STATE(246), 1,
2023-10-21 17:19:01 +00:00
aux_sym_map_repeat1,
2023-10-28 14:28:43 +00:00
[11248] = 3,
ACTIONS(611), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(615), 1,
anon_sym_RBRACE,
STATE(253), 1,
aux_sym_map_repeat1,
[11258] = 3,
ACTIONS(611), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(617), 1,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
STATE(248), 1,
aux_sym_map_repeat1,
2023-10-28 14:28:43 +00:00
[11268] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(619), 1,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(231), 1,
2023-10-18 23:26:49 +00:00
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11278] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(621), 1,
2023-10-21 17:19:01 +00:00
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
2023-10-21 17:19:01 +00:00
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11288] = 3,
ACTIONS(623), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(626), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11298] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(628), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11308] = 3,
ACTIONS(611), 1,
sym_identifier,
ACTIONS(630), 1,
anon_sym_RBRACE,
STATE(244), 1,
aux_sym_map_repeat1,
[11318] = 2,
ACTIONS(634), 1,
anon_sym_COMMA,
ACTIONS(632), 2,
2023-10-18 22:18:41 +00:00
sym_identifier,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
[11326] = 3,
ACTIONS(601), 1,
sym_identifier,
ACTIONS(636), 1,
anon_sym_GT,
STATE(237), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11336] = 3,
ACTIONS(601), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(638), 1,
2023-10-21 17:19:01 +00:00
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(251), 1,
2023-10-21 17:19:01 +00:00
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11346] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(640), 1,
anon_sym_GT,
STATE(237), 1,
aux_sym_function_repeat1,
[11356] = 3,
ACTIONS(611), 1,
sym_identifier,
ACTIONS(642), 1,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
STATE(246), 1,
aux_sym_map_repeat1,
2023-10-28 14:28:43 +00:00
[11366] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(644), 1,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(236), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11376] = 3,
ACTIONS(646), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(649), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
STATE(246), 1,
2023-10-21 17:04:17 +00:00
aux_sym_map_repeat1,
2023-10-28 14:28:43 +00:00
[11386] = 3,
ACTIONS(611), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(651), 1,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
STATE(232), 1,
aux_sym_map_repeat1,
2023-10-28 14:28:43 +00:00
[11396] = 3,
ACTIONS(611), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(653), 1,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
STATE(246), 1,
aux_sym_map_repeat1,
2023-10-28 14:28:43 +00:00
[11406] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(655), 1,
anon_sym_GT,
STATE(237), 1,
aux_sym_function_repeat1,
[11416] = 3,
ACTIONS(601), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(657), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(241), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11426] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(659), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11436] = 3,
ACTIONS(601), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(661), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
2023-10-28 14:28:43 +00:00
STATE(237), 1,
2023-10-21 17:04:17 +00:00
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11446] = 3,
ACTIONS(611), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(663), 1,
anon_sym_RBRACE,
STATE(246), 1,
aux_sym_map_repeat1,
[11456] = 3,
ACTIONS(601), 1,
sym_identifier,
ACTIONS(665), 1,
anon_sym_GT,
STATE(237), 1,
2023-10-19 01:50:45 +00:00
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11466] = 2,
ACTIONS(601), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
STATE(243), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11473] = 2,
ACTIONS(601), 1,
sym_identifier,
STATE(249), 1,
aux_sym_function_repeat1,
[11480] = 1,
ACTIONS(626), 2,
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
[11485] = 2,
ACTIONS(601), 1,
sym_identifier,
STATE(254), 1,
aux_sym_function_repeat1,
[11492] = 2,
ACTIONS(601), 1,
sym_identifier,
STATE(228), 1,
aux_sym_function_repeat1,
2023-10-28 14:28:43 +00:00
[11499] = 2,
ACTIONS(667), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-28 14:28:43 +00:00
ACTIONS(669), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11506] = 2,
ACTIONS(671), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-28 14:28:43 +00:00
ACTIONS(673), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11513] = 2,
ACTIONS(675), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-28 14:28:43 +00:00
ACTIONS(677), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11520] = 2,
ACTIONS(679), 1,
anon_sym_LT,
ACTIONS(681), 1,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11527] = 1,
ACTIONS(683), 1,
anon_sym_in,
[11531] = 1,
ACTIONS(685), 1,
anon_sym_into,
[11535] = 1,
ACTIONS(687), 1,
anon_sym_LBRACE,
[11539] = 1,
ACTIONS(689), 1,
anon_sym_LBRACE,
[11543] = 1,
ACTIONS(691), 1,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11547] = 1,
ACTIONS(693), 1,
sym_identifier,
2023-10-28 14:28:43 +00:00
[11551] = 1,
ACTIONS(695), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11555] = 1,
ACTIONS(697), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11559] = 1,
ACTIONS(699), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11563] = 1,
ACTIONS(701), 1,
anon_sym_in,
2023-10-28 14:28:43 +00:00
[11567] = 1,
ACTIONS(703), 1,
anon_sym_in,
2023-10-28 14:28:43 +00:00
[11571] = 1,
ACTIONS(705), 1,
anon_sym_RBRACE,
[11575] = 1,
ACTIONS(707), 1,
2023-10-21 17:19:01 +00:00
anon_sym_in,
2023-10-28 14:28:43 +00:00
[11579] = 1,
ACTIONS(709), 1,
anon_sym_in,
[11583] = 1,
ACTIONS(711), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11587] = 1,
ACTIONS(713), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11591] = 1,
ACTIONS(715), 1,
anon_sym_from,
[11595] = 1,
ACTIONS(717), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11599] = 1,
ACTIONS(719), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11603] = 1,
ACTIONS(721), 1,
anon_sym_from,
[11607] = 1,
ACTIONS(723), 1,
anon_sym_into,
[11611] = 1,
ACTIONS(725), 1,
anon_sym_EQ,
[11615] = 1,
ACTIONS(727), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11619] = 1,
ACTIONS(729), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11623] = 1,
ACTIONS(731), 1,
sym_identifier,
[11627] = 1,
ACTIONS(733), 1,
anon_sym_from,
[11631] = 1,
ACTIONS(735), 1,
anon_sym_LBRACE,
[11635] = 1,
ACTIONS(737), 1,
ts_builtin_sym_end,
[11639] = 1,
ACTIONS(739), 1,
anon_sym_LBRACE,
[11643] = 1,
ACTIONS(741), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11647] = 1,
ACTIONS(743), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11651] = 1,
ACTIONS(745), 1,
anon_sym_LT,
[11655] = 1,
ACTIONS(747), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
[11659] = 1,
ACTIONS(749), 1,
sym_identifier,
[11663] = 1,
ACTIONS(751), 1,
sym_identifier,
[11667] = 1,
ACTIONS(753), 1,
sym_identifier,
[11671] = 1,
ACTIONS(755), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11675] = 1,
ACTIONS(757), 1,
sym_identifier,
[11679] = 1,
ACTIONS(759), 1,
anon_sym_LT,
[11683] = 1,
ACTIONS(761), 1,
2023-10-21 17:19:01 +00:00
anon_sym_from,
2023-10-28 14:28:43 +00:00
[11687] = 1,
ACTIONS(763), 1,
anon_sym_RBRACE,
[11691] = 1,
ACTIONS(765), 1,
anon_sym_LT,
2023-10-28 14:28:43 +00:00
[11695] = 1,
ACTIONS(767), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-28 14:28:43 +00:00
[11699] = 1,
ACTIONS(769), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11703] = 1,
ACTIONS(771), 1,
anon_sym_LBRACE,
[11707] = 1,
ACTIONS(773), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11711] = 1,
ACTIONS(775), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-28 14:28:43 +00:00
[11715] = 1,
ACTIONS(777), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11719] = 1,
ACTIONS(779), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11723] = 1,
ACTIONS(781), 1,
anon_sym_RBRACE,
[11727] = 1,
ACTIONS(783), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-28 14:28:43 +00:00
[11731] = 1,
ACTIONS(785), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11735] = 1,
ACTIONS(787), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
[11739] = 1,
ACTIONS(789), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11743] = 1,
ACTIONS(791), 1,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
[11747] = 1,
ACTIONS(793), 1,
anon_sym_RBRACE,
[11751] = 1,
ACTIONS(795), 1,
anon_sym_RBRACE,
[11755] = 1,
ACTIONS(797), 1,
anon_sym_RBRACE,
[11759] = 1,
ACTIONS(799), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-10-21 20:38:20 +00:00
[SMALL_STATE(2)] = 0,
2023-10-28 14:28:43 +00:00
[SMALL_STATE(3)] = 85,
[SMALL_STATE(4)] = 170,
[SMALL_STATE(5)] = 255,
[SMALL_STATE(6)] = 340,
[SMALL_STATE(7)] = 453,
[SMALL_STATE(8)] = 566,
[SMALL_STATE(9)] = 676,
[SMALL_STATE(10)] = 785,
[SMALL_STATE(11)] = 894,
[SMALL_STATE(12)] = 1003,
[SMALL_STATE(13)] = 1112,
[SMALL_STATE(14)] = 1221,
[SMALL_STATE(15)] = 1330,
[SMALL_STATE(16)] = 1439,
[SMALL_STATE(17)] = 1548,
[SMALL_STATE(18)] = 1657,
[SMALL_STATE(19)] = 1766,
[SMALL_STATE(20)] = 1875,
[SMALL_STATE(21)] = 1984,
[SMALL_STATE(22)] = 2093,
[SMALL_STATE(23)] = 2202,
[SMALL_STATE(24)] = 2311,
[SMALL_STATE(25)] = 2420,
[SMALL_STATE(26)] = 2529,
[SMALL_STATE(27)] = 2638,
[SMALL_STATE(28)] = 2707,
[SMALL_STATE(29)] = 2816,
[SMALL_STATE(30)] = 2925,
[SMALL_STATE(31)] = 3034,
[SMALL_STATE(32)] = 3143,
[SMALL_STATE(33)] = 3252,
[SMALL_STATE(34)] = 3357,
[SMALL_STATE(35)] = 3462,
[SMALL_STATE(36)] = 3567,
[SMALL_STATE(37)] = 3672,
[SMALL_STATE(38)] = 3777,
[SMALL_STATE(39)] = 3831,
[SMALL_STATE(40)] = 3881,
[SMALL_STATE(41)] = 3941,
[SMALL_STATE(42)] = 4003,
[SMALL_STATE(43)] = 4063,
[SMALL_STATE(44)] = 4125,
[SMALL_STATE(45)] = 4185,
[SMALL_STATE(46)] = 4245,
[SMALL_STATE(47)] = 4295,
[SMALL_STATE(48)] = 4368,
[SMALL_STATE(49)] = 4441,
[SMALL_STATE(50)] = 4514,
[SMALL_STATE(51)] = 4587,
[SMALL_STATE(52)] = 4631,
[SMALL_STATE(53)] = 4675,
[SMALL_STATE(54)] = 4719,
[SMALL_STATE(55)] = 4763,
[SMALL_STATE(56)] = 4807,
[SMALL_STATE(57)] = 4851,
[SMALL_STATE(58)] = 4895,
[SMALL_STATE(59)] = 4939,
[SMALL_STATE(60)] = 4983,
[SMALL_STATE(61)] = 5027,
[SMALL_STATE(62)] = 5071,
[SMALL_STATE(63)] = 5115,
[SMALL_STATE(64)] = 5159,
[SMALL_STATE(65)] = 5203,
[SMALL_STATE(66)] = 5247,
[SMALL_STATE(67)] = 5286,
[SMALL_STATE(68)] = 5335,
[SMALL_STATE(69)] = 5378,
[SMALL_STATE(70)] = 5421,
[SMALL_STATE(71)] = 5470,
[SMALL_STATE(72)] = 5509,
[SMALL_STATE(73)] = 5560,
[SMALL_STATE(74)] = 5598,
[SMALL_STATE(75)] = 5631,
[SMALL_STATE(76)] = 5664,
[SMALL_STATE(77)] = 5697,
[SMALL_STATE(78)] = 5730,
[SMALL_STATE(79)] = 5763,
[SMALL_STATE(80)] = 5796,
[SMALL_STATE(81)] = 5829,
[SMALL_STATE(82)] = 5862,
[SMALL_STATE(83)] = 5895,
[SMALL_STATE(84)] = 5928,
[SMALL_STATE(85)] = 5961,
[SMALL_STATE(86)] = 5994,
[SMALL_STATE(87)] = 6027,
[SMALL_STATE(88)] = 6060,
[SMALL_STATE(89)] = 6093,
[SMALL_STATE(90)] = 6125,
[SMALL_STATE(91)] = 6181,
[SMALL_STATE(92)] = 6213,
[SMALL_STATE(93)] = 6268,
[SMALL_STATE(94)] = 6323,
[SMALL_STATE(95)] = 6378,
[SMALL_STATE(96)] = 6433,
[SMALL_STATE(97)] = 6488,
[SMALL_STATE(98)] = 6543,
[SMALL_STATE(99)] = 6598,
[SMALL_STATE(100)] = 6653,
[SMALL_STATE(101)] = 6708,
[SMALL_STATE(102)] = 6763,
[SMALL_STATE(103)] = 6818,
[SMALL_STATE(104)] = 6873,
[SMALL_STATE(105)] = 6928,
[SMALL_STATE(106)] = 6983,
[SMALL_STATE(107)] = 7038,
[SMALL_STATE(108)] = 7093,
[SMALL_STATE(109)] = 7148,
[SMALL_STATE(110)] = 7203,
[SMALL_STATE(111)] = 7258,
[SMALL_STATE(112)] = 7313,
[SMALL_STATE(113)] = 7343,
[SMALL_STATE(114)] = 7373,
[SMALL_STATE(115)] = 7403,
[SMALL_STATE(116)] = 7433,
[SMALL_STATE(117)] = 7463,
[SMALL_STATE(118)] = 7493,
[SMALL_STATE(119)] = 7523,
[SMALL_STATE(120)] = 7553,
[SMALL_STATE(121)] = 7583,
[SMALL_STATE(122)] = 7613,
[SMALL_STATE(123)] = 7643,
[SMALL_STATE(124)] = 7673,
[SMALL_STATE(125)] = 7703,
[SMALL_STATE(126)] = 7733,
[SMALL_STATE(127)] = 7763,
[SMALL_STATE(128)] = 7793,
[SMALL_STATE(129)] = 7842,
[SMALL_STATE(130)] = 7891,
[SMALL_STATE(131)] = 7940,
[SMALL_STATE(132)] = 7989,
[SMALL_STATE(133)] = 8038,
[SMALL_STATE(134)] = 8087,
[SMALL_STATE(135)] = 8136,
[SMALL_STATE(136)] = 8185,
[SMALL_STATE(137)] = 8234,
[SMALL_STATE(138)] = 8283,
[SMALL_STATE(139)] = 8332,
[SMALL_STATE(140)] = 8381,
[SMALL_STATE(141)] = 8430,
[SMALL_STATE(142)] = 8479,
[SMALL_STATE(143)] = 8528,
[SMALL_STATE(144)] = 8577,
[SMALL_STATE(145)] = 8626,
[SMALL_STATE(146)] = 8675,
[SMALL_STATE(147)] = 8724,
[SMALL_STATE(148)] = 8773,
[SMALL_STATE(149)] = 8822,
[SMALL_STATE(150)] = 8871,
[SMALL_STATE(151)] = 8920,
[SMALL_STATE(152)] = 8969,
[SMALL_STATE(153)] = 9018,
[SMALL_STATE(154)] = 9067,
[SMALL_STATE(155)] = 9116,
[SMALL_STATE(156)] = 9165,
[SMALL_STATE(157)] = 9214,
[SMALL_STATE(158)] = 9263,
[SMALL_STATE(159)] = 9312,
[SMALL_STATE(160)] = 9361,
[SMALL_STATE(161)] = 9410,
[SMALL_STATE(162)] = 9459,
[SMALL_STATE(163)] = 9508,
[SMALL_STATE(164)] = 9536,
[SMALL_STATE(165)] = 9565,
[SMALL_STATE(166)] = 9600,
[SMALL_STATE(167)] = 9629,
[SMALL_STATE(168)] = 9664,
[SMALL_STATE(169)] = 9694,
[SMALL_STATE(170)] = 9717,
[SMALL_STATE(171)] = 9740,
[SMALL_STATE(172)] = 9763,
[SMALL_STATE(173)] = 9786,
[SMALL_STATE(174)] = 9809,
[SMALL_STATE(175)] = 9832,
[SMALL_STATE(176)] = 9855,
[SMALL_STATE(177)] = 9882,
[SMALL_STATE(178)] = 9905,
[SMALL_STATE(179)] = 9928,
[SMALL_STATE(180)] = 9951,
[SMALL_STATE(181)] = 9974,
[SMALL_STATE(182)] = 9997,
[SMALL_STATE(183)] = 10024,
[SMALL_STATE(184)] = 10059,
[SMALL_STATE(185)] = 10094,
[SMALL_STATE(186)] = 10117,
[SMALL_STATE(187)] = 10152,
[SMALL_STATE(188)] = 10175,
[SMALL_STATE(189)] = 10210,
[SMALL_STATE(190)] = 10233,
[SMALL_STATE(191)] = 10268,
[SMALL_STATE(192)] = 10300,
[SMALL_STATE(193)] = 10332,
[SMALL_STATE(194)] = 10364,
[SMALL_STATE(195)] = 10396,
[SMALL_STATE(196)] = 10428,
[SMALL_STATE(197)] = 10460,
[SMALL_STATE(198)] = 10492,
[SMALL_STATE(199)] = 10524,
[SMALL_STATE(200)] = 10556,
[SMALL_STATE(201)] = 10588,
[SMALL_STATE(202)] = 10620,
[SMALL_STATE(203)] = 10652,
[SMALL_STATE(204)] = 10684,
[SMALL_STATE(205)] = 10716,
[SMALL_STATE(206)] = 10737,
[SMALL_STATE(207)] = 10758,
[SMALL_STATE(208)] = 10779,
[SMALL_STATE(209)] = 10800,
[SMALL_STATE(210)] = 10821,
[SMALL_STATE(211)] = 10842,
[SMALL_STATE(212)] = 10871,
[SMALL_STATE(213)] = 10892,
[SMALL_STATE(214)] = 10913,
[SMALL_STATE(215)] = 10934,
[SMALL_STATE(216)] = 10955,
[SMALL_STATE(217)] = 10976,
[SMALL_STATE(218)] = 10997,
[SMALL_STATE(219)] = 11018,
[SMALL_STATE(220)] = 11039,
[SMALL_STATE(221)] = 11060,
[SMALL_STATE(222)] = 11082,
[SMALL_STATE(223)] = 11104,
[SMALL_STATE(224)] = 11126,
[SMALL_STATE(225)] = 11148,
[SMALL_STATE(226)] = 11166,
[SMALL_STATE(227)] = 11182,
[SMALL_STATE(228)] = 11198,
[SMALL_STATE(229)] = 11208,
[SMALL_STATE(230)] = 11218,
[SMALL_STATE(231)] = 11228,
[SMALL_STATE(232)] = 11238,
[SMALL_STATE(233)] = 11248,
[SMALL_STATE(234)] = 11258,
[SMALL_STATE(235)] = 11268,
[SMALL_STATE(236)] = 11278,
[SMALL_STATE(237)] = 11288,
[SMALL_STATE(238)] = 11298,
[SMALL_STATE(239)] = 11308,
[SMALL_STATE(240)] = 11318,
[SMALL_STATE(241)] = 11326,
[SMALL_STATE(242)] = 11336,
[SMALL_STATE(243)] = 11346,
[SMALL_STATE(244)] = 11356,
[SMALL_STATE(245)] = 11366,
[SMALL_STATE(246)] = 11376,
[SMALL_STATE(247)] = 11386,
[SMALL_STATE(248)] = 11396,
[SMALL_STATE(249)] = 11406,
[SMALL_STATE(250)] = 11416,
[SMALL_STATE(251)] = 11426,
[SMALL_STATE(252)] = 11436,
[SMALL_STATE(253)] = 11446,
[SMALL_STATE(254)] = 11456,
[SMALL_STATE(255)] = 11466,
[SMALL_STATE(256)] = 11473,
[SMALL_STATE(257)] = 11480,
[SMALL_STATE(258)] = 11485,
[SMALL_STATE(259)] = 11492,
[SMALL_STATE(260)] = 11499,
[SMALL_STATE(261)] = 11506,
[SMALL_STATE(262)] = 11513,
[SMALL_STATE(263)] = 11520,
[SMALL_STATE(264)] = 11527,
[SMALL_STATE(265)] = 11531,
[SMALL_STATE(266)] = 11535,
[SMALL_STATE(267)] = 11539,
[SMALL_STATE(268)] = 11543,
[SMALL_STATE(269)] = 11547,
[SMALL_STATE(270)] = 11551,
[SMALL_STATE(271)] = 11555,
[SMALL_STATE(272)] = 11559,
[SMALL_STATE(273)] = 11563,
[SMALL_STATE(274)] = 11567,
[SMALL_STATE(275)] = 11571,
[SMALL_STATE(276)] = 11575,
[SMALL_STATE(277)] = 11579,
[SMALL_STATE(278)] = 11583,
[SMALL_STATE(279)] = 11587,
[SMALL_STATE(280)] = 11591,
[SMALL_STATE(281)] = 11595,
[SMALL_STATE(282)] = 11599,
[SMALL_STATE(283)] = 11603,
[SMALL_STATE(284)] = 11607,
[SMALL_STATE(285)] = 11611,
[SMALL_STATE(286)] = 11615,
[SMALL_STATE(287)] = 11619,
[SMALL_STATE(288)] = 11623,
[SMALL_STATE(289)] = 11627,
[SMALL_STATE(290)] = 11631,
[SMALL_STATE(291)] = 11635,
[SMALL_STATE(292)] = 11639,
[SMALL_STATE(293)] = 11643,
[SMALL_STATE(294)] = 11647,
[SMALL_STATE(295)] = 11651,
[SMALL_STATE(296)] = 11655,
[SMALL_STATE(297)] = 11659,
[SMALL_STATE(298)] = 11663,
[SMALL_STATE(299)] = 11667,
[SMALL_STATE(300)] = 11671,
[SMALL_STATE(301)] = 11675,
[SMALL_STATE(302)] = 11679,
[SMALL_STATE(303)] = 11683,
[SMALL_STATE(304)] = 11687,
[SMALL_STATE(305)] = 11691,
[SMALL_STATE(306)] = 11695,
[SMALL_STATE(307)] = 11699,
[SMALL_STATE(308)] = 11703,
[SMALL_STATE(309)] = 11707,
[SMALL_STATE(310)] = 11711,
[SMALL_STATE(311)] = 11715,
[SMALL_STATE(312)] = 11719,
[SMALL_STATE(313)] = 11723,
[SMALL_STATE(314)] = 11727,
[SMALL_STATE(315)] = 11731,
[SMALL_STATE(316)] = 11735,
[SMALL_STATE(317)] = 11739,
[SMALL_STATE(318)] = 11743,
[SMALL_STATE(319)] = 11747,
[SMALL_STATE(320)] = 11751,
[SMALL_STATE(321)] = 11755,
[SMALL_STATE(322)] = 11759,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-28 14:28:43 +00:00
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
2023-10-22 20:41:37 +00:00
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
2023-10-28 14:28:43 +00:00
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260),
[59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305),
[63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98),
[65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48),
[71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100),
[73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50),
[75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
[77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(38),
[82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(121),
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3),
[88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(55),
[91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(55),
[94] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(57),
[97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(99),
[100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(261),
[103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(234),
[106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(302),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(132),
[112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(133),
[115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(301),
[118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(301),
[121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(299),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(298),
[127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(297),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(296),
[133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(295),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(265),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(292),
[142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
[146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(38),
[149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(121),
[152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(3),
[155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(55),
[158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(55),
[161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(57),
[164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(99),
[167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(261),
[170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(234),
[173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(302),
[176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(132),
[179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(133),
[182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(301),
[185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(301),
[188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(299),
[191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(298),
[194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(297),
[197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(296),
[200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(295),
[203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(265),
[206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(292),
[209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
[217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
[221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284),
[223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163),
[229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[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 = false}}, SHIFT(226),
[241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227),
[247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sublist, 5),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sublist, 5),
[259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86),
[279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83),
[285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310),
[297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 4),
[349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 4),
[351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 3),
[357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 3),
[359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267),
[373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(129),
[390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(86),
[397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2),
[400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(83),
[405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(83),
[408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(77),
[411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(111),
[414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(262),
[417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(247),
[420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(310),
[423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8),
[505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8),
[507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 9),
[521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 9),
[523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187),
[525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217),
[527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215),
[531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
[535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263),
[539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
[543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63),
[545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140),
[551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3),
[555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283),
[607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(240),
[626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(285),
[649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[737] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
};
#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