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

12776 lines
299 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-29 23:31:06 +00:00
#define STATE_COUNT 304
2023-10-21 20:38:20 +00:00
#define LARGE_STATE_COUNT 2
2023-10-29 23:31:06 +00:00
#define SYMBOL_COUNT 125
#define ALIAS_COUNT 0
2023-10-29 23:31:06 +00:00
#define TOKEN_COUNT 82
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
2023-10-21 17:04:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 9
#define PRODUCTION_ID_COUNT 1
enum {
sym_identifier = 1,
aux_sym_comment_token1 = 2,
anon_sym_LPAREN = 3,
anon_sym_RPAREN = 4,
2023-10-29 23:31:06 +00:00
sym__numeric = 5,
anon_sym_DASH = 6,
anon_sym_DOT = 7,
sym_string = 8,
anon_sym_true = 9,
anon_sym_false = 10,
anon_sym_LBRACK = 11,
anon_sym_COMMA = 12,
anon_sym_RBRACK = 13,
anon_sym_LBRACE = 14,
anon_sym_EQ = 15,
anon_sym_RBRACE = 16,
anon_sym_DOT2 = 17,
anon_sym_DOT_DOT = 18,
anon_sym_function = 19,
anon_sym_LT = 20,
anon_sym_GT = 21,
anon_sym_table = 22,
anon_sym_PLUS = 23,
anon_sym_DASH2 = 24,
anon_sym_STAR = 25,
anon_sym_SLASH = 26,
anon_sym_PERCENT = 27,
anon_sym_EQ_EQ = 28,
anon_sym_BANG_EQ = 29,
anon_sym_AMP_AMP = 30,
anon_sym_PIPE_PIPE = 31,
anon_sym_GT_EQ = 32,
anon_sym_LT_EQ = 33,
anon_sym_PLUS_EQ = 34,
anon_sym_DASH_EQ = 35,
anon_sym_if = 36,
anon_sym_elseif = 37,
anon_sym_else = 38,
anon_sym_while = 39,
anon_sym_for = 40,
anon_sym_asyncfor = 41,
anon_sym_in = 42,
anon_sym_transform = 43,
anon_sym_filter = 44,
anon_sym_find = 45,
anon_sym_remove = 46,
anon_sym_select = 47,
anon_sym_from = 48,
anon_sym_insert = 49,
anon_sym_into = 50,
anon_sym_async = 51,
anon_sym_assert = 52,
anon_sym_assert_equal = 53,
anon_sym_download = 54,
anon_sym_help = 55,
anon_sym_length = 56,
anon_sym_output = 57,
anon_sym_output_error = 58,
anon_sym_type = 59,
anon_sym_workdir = 60,
anon_sym_append = 61,
anon_sym_metadata = 62,
anon_sym_move = 63,
anon_sym_read = 64,
anon_sym_write = 65,
anon_sym_from_json = 66,
anon_sym_to_json = 67,
anon_sym_to_string = 68,
anon_sym_to_float = 69,
anon_sym_bash = 70,
anon_sym_fish = 71,
anon_sym_raw = 72,
anon_sym_sh = 73,
anon_sym_zsh = 74,
anon_sym_random = 75,
anon_sym_random_boolean = 76,
anon_sym_random_float = 77,
anon_sym_random_integer = 78,
anon_sym_columns = 79,
anon_sym_rows = 80,
anon_sym_reverse = 81,
sym_root = 82,
sym_item = 83,
sym_statement = 84,
sym_comment = 85,
sym_expression = 86,
sym__expression_kind = 87,
sym_value = 88,
sym_integer = 89,
sym_float = 90,
sym_boolean = 91,
sym_list = 92,
sym_map = 93,
sym_index = 94,
sym_function = 95,
sym_table = 96,
sym_math = 97,
sym_math_operator = 98,
sym_logic = 99,
sym_logic_operator = 100,
sym_assignment = 101,
sym_assignment_operator = 102,
sym_if_else = 103,
sym_if = 104,
sym_else_if = 105,
sym_else = 106,
sym_function_call = 107,
sym_while = 108,
sym_for = 109,
sym_transform = 110,
sym_filter = 111,
sym_find = 112,
sym_remove = 113,
sym_select = 114,
sym_insert = 115,
sym_async = 116,
sym_tool = 117,
sym__tool_kind = 118,
aux_sym_root_repeat1 = 119,
aux_sym_item_repeat1 = 120,
aux_sym_list_repeat1 = 121,
aux_sym_map_repeat1 = 122,
aux_sym_function_repeat1 = 123,
aux_sym_if_else_repeat1 = 124,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[aux_sym_comment_token1] = "comment_token1",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
2023-10-29 23:31:06 +00:00
[sym__numeric] = "_numeric",
[anon_sym_DASH] = "-",
[anon_sym_DOT] = ".",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = "{",
[anon_sym_EQ] = "=",
[anon_sym_RBRACE] = "}",
[anon_sym_DOT2] = ".",
[anon_sym_DOT_DOT] = "..",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_table] = "table",
[anon_sym_PLUS] = "+",
2023-10-29 23:31:06 +00:00
[anon_sym_DASH2] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_EQ] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
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",
2023-10-29 23:31:06 +00:00
[sym_integer] = "integer",
[sym_float] = "float",
[sym_boolean] = "boolean",
[sym_list] = "list",
2023-10-29 23:31:06 +00:00
[sym_map] = "map",
[sym_index] = "index",
[sym_function] = "function",
[sym_table] = "table",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_function_call] = "function_call",
[sym_while] = "while",
[sym_for] = "for",
[sym_transform] = "transform",
[sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[sym_find] = "find",
2023-10-19 01:50:45 +00:00
[sym_remove] = "remove",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_async] = "async",
2023-10-21 17:19:01 +00:00
[sym_tool] = "tool",
[sym__tool_kind] = "_tool_kind",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_item_repeat1] = "item_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[aux_sym_comment_token1] = aux_sym_comment_token1,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
[sym__numeric] = sym__numeric,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_DOT] = anon_sym_DOT,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_DOT2] = anon_sym_DOT,
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_table] = anon_sym_table,
[anon_sym_PLUS] = anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
[anon_sym_DASH2] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_if] = anon_sym_if,
[anon_sym_elseif] = anon_sym_elseif,
[anon_sym_else] = anon_sym_else,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
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,
2023-10-29 23:31:06 +00:00
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
2023-10-29 23:31:06 +00:00
[sym_map] = sym_map,
[sym_index] = sym_index,
[sym_function] = sym_function,
[sym_table] = sym_table,
[sym_math] = sym_math,
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_function_call] = sym_function_call,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_transform] = sym_transform,
[sym_filter] = sym_filter,
2023-10-18 22:18:41 +00:00
[sym_find] = sym_find,
2023-10-19 01:50:45 +00:00
[sym_remove] = sym_remove,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_async] = sym_async,
2023-10-21 17:19:01 +00:00
[sym_tool] = sym_tool,
[sym__tool_kind] = sym__tool_kind,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_item_repeat1] = aux_sym_item_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[aux_sym_comment_token1] = {
.visible = false,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[sym__numeric] = {
.visible = false,
.named = true,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DASH] = {
.visible = true,
2023-10-29 23:31:06 +00:00
.named = false,
},
[anon_sym_DOT] = {
.visible = true,
.named = false,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DOT2] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_function] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_LT] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_GT] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_table] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DASH2] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_elseif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
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,
},
2023-10-29 23:31:06 +00:00
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_map] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_index] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_table] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
2023-10-18 22:18:41 +00:00
[sym_find] = {
.visible = true,
.named = true,
},
2023-10-19 01:50:45 +00:00
[sym_remove] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_async] = {
.visible = true,
.named = true,
},
2023-10-21 17:19:01 +00:00
[sym_tool] = {
.visible = true,
.named = true,
},
[sym__tool_kind] = {
.visible = false,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_item_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
2023-10-29 23:31:06 +00:00
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
2023-10-22 20:41:37 +00:00
[3] = 2,
2023-10-22 20:50:09 +00:00
[4] = 2,
2023-10-29 23:31:06 +00:00
[5] = 5,
2023-10-22 20:50:09 +00:00
[6] = 6,
2023-10-22 20:41:37 +00:00
[7] = 7,
2023-10-21 20:38:20 +00:00
[8] = 8,
2023-10-22 20:32:55 +00:00
[9] = 9,
[10] = 10,
2023-10-29 23:31:06 +00:00
[11] = 8,
[12] = 9,
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-29 23:31:06 +00:00
[17] = 8,
[18] = 16,
[19] = 9,
[20] = 20,
[21] = 16,
[22] = 22,
2023-10-28 14:28:43 +00:00
[23] = 23,
2023-10-22 18:48:34 +00:00
[24] = 24,
2023-10-28 14:28:43 +00:00
[25] = 25,
[26] = 26,
2023-10-29 23:31:06 +00:00
[27] = 24,
[28] = 28,
[29] = 29,
[30] = 30,
2023-10-21 17:04:17 +00:00
[31] = 31,
2023-10-28 14:28:43 +00:00
[32] = 32,
2023-10-29 23:31:06 +00:00
[33] = 32,
[34] = 34,
2023-10-29 23:31:06 +00:00
[35] = 35,
[36] = 35,
[37] = 35,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
2023-10-29 23:31:06 +00:00
[48] = 48,
[49] = 49,
[50] = 50,
2023-10-19 01:50:45 +00:00
[51] = 51,
2023-10-21 17:19:01 +00:00
[52] = 52,
[53] = 53,
2023-10-21 20:38:20 +00:00
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
2023-10-28 14:28:43 +00:00
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
2023-10-18 22:18:41 +00:00
[64] = 64,
[65] = 65,
2023-10-29 23:31:06 +00:00
[66] = 44,
[67] = 67,
2023-10-19 01:50:45 +00:00
[68] = 68,
2023-10-29 23:31:06 +00:00
[69] = 42,
[70] = 70,
[71] = 41,
[72] = 46,
2023-10-21 17:04:17 +00:00
[73] = 73,
2023-10-29 23:31:06 +00:00
[74] = 45,
[75] = 75,
[76] = 76,
[77] = 47,
[78] = 78,
[79] = 79,
[80] = 60,
[81] = 78,
[82] = 55,
[83] = 58,
[84] = 54,
[85] = 65,
2023-10-28 14:28:43 +00:00
[86] = 63,
2023-10-29 23:31:06 +00:00
[87] = 50,
2023-10-28 14:28:43 +00:00
[88] = 64,
2023-10-29 23:31:06 +00:00
[89] = 79,
[90] = 52,
[91] = 48,
[92] = 59,
[93] = 93,
[94] = 49,
[95] = 51,
[96] = 96,
[97] = 57,
[98] = 76,
[99] = 93,
[100] = 78,
[101] = 96,
[102] = 53,
[103] = 56,
[104] = 93,
[105] = 79,
[106] = 61,
[107] = 96,
[108] = 76,
[109] = 62,
[110] = 110,
[111] = 111,
2023-10-28 14:28:43 +00:00
[112] = 112,
[113] = 113,
[114] = 114,
2023-10-29 23:31:06 +00:00
[115] = 112,
2023-10-28 14:28:43 +00:00
[116] = 116,
2023-10-29 23:31:06 +00:00
[117] = 116,
2023-10-28 14:28:43 +00:00
[118] = 118,
[119] = 119,
2023-10-29 23:31:06 +00:00
[120] = 113,
2023-10-28 14:28:43 +00:00
[121] = 121,
2023-10-29 23:31:06 +00:00
[122] = 121,
[123] = 116,
2023-10-28 14:28:43 +00:00
[124] = 124,
[125] = 125,
[126] = 126,
2023-10-29 23:31:06 +00:00
[127] = 119,
[128] = 119,
[129] = 118,
2023-10-28 14:28:43 +00:00
[130] = 130,
2023-10-29 23:31:06 +00:00
[131] = 124,
[132] = 132,
2023-10-28 14:28:43 +00:00
[133] = 133,
2023-10-29 23:31:06 +00:00
[134] = 113,
[135] = 121,
[136] = 136,
2023-10-19 01:50:45 +00:00
[137] = 137,
2023-10-29 23:31:06 +00:00
[138] = 124,
[139] = 139,
[140] = 140,
[141] = 114,
2023-10-28 14:28:43 +00:00
[142] = 142,
2023-10-29 23:31:06 +00:00
[143] = 143,
[144] = 144,
2023-10-28 14:28:43 +00:00
[145] = 145,
2023-10-29 23:31:06 +00:00
[146] = 146,
[147] = 147,
[148] = 148,
2023-10-28 14:28:43 +00:00
[149] = 149,
2023-10-29 23:31:06 +00:00
[150] = 150,
2023-10-28 14:28:43 +00:00
[151] = 151,
[152] = 152,
2023-10-29 23:31:06 +00:00
[153] = 153,
[154] = 154,
[155] = 155,
[156] = 156,
[157] = 157,
2023-10-28 14:28:43 +00:00
[158] = 158,
2023-10-29 23:31:06 +00:00
[159] = 42,
[160] = 41,
[161] = 44,
[162] = 46,
[163] = 45,
[164] = 48,
[165] = 50,
[166] = 49,
[167] = 51,
[168] = 55,
[169] = 34,
2023-10-28 14:28:43 +00:00
[170] = 56,
2023-10-29 23:31:06 +00:00
[171] = 64,
2023-10-28 14:28:43 +00:00
[172] = 58,
2023-10-29 23:31:06 +00:00
[173] = 52,
[174] = 54,
[175] = 65,
[176] = 53,
[177] = 61,
[178] = 62,
[179] = 57,
[180] = 63,
[181] = 60,
[182] = 59,
[183] = 47,
[184] = 184,
2023-10-29 23:31:06 +00:00
[185] = 39,
[186] = 186,
[187] = 38,
[188] = 184,
[189] = 184,
[190] = 43,
2023-10-28 14:28:43 +00:00
[191] = 191,
2023-10-29 23:31:06 +00:00
[192] = 192,
[193] = 193,
2023-10-29 23:31:06 +00:00
[194] = 194,
[195] = 191,
[196] = 196,
2023-10-28 14:28:43 +00:00
[197] = 197,
2023-10-29 23:31:06 +00:00
[198] = 198,
2023-10-28 14:28:43 +00:00
[199] = 199,
2023-10-18 23:26:49 +00:00
[200] = 200,
2023-10-29 23:31:06 +00:00
[201] = 40,
[202] = 191,
[203] = 203,
2023-10-28 14:28:43 +00:00
[204] = 204,
2023-10-29 23:31:06 +00:00
[205] = 204,
[206] = 204,
[207] = 207,
[208] = 208,
[209] = 209,
[210] = 210,
2023-10-19 01:50:45 +00:00
[211] = 211,
2023-10-29 23:31:06 +00:00
[212] = 212,
[213] = 212,
[214] = 214,
[215] = 215,
[216] = 210,
[217] = 215,
[218] = 218,
[219] = 214,
[220] = 220,
2023-10-18 22:18:41 +00:00
[221] = 221,
2023-10-28 14:28:43 +00:00
[222] = 221,
2023-10-29 23:31:06 +00:00
[223] = 223,
[224] = 211,
[225] = 218,
[226] = 212,
[227] = 210,
[228] = 221,
[229] = 211,
[230] = 215,
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-29 23:31:06 +00:00
[234] = 232,
[235] = 232,
[236] = 236,
[237] = 236,
[238] = 236,
[239] = 239,
2023-10-28 14:28:43 +00:00
[240] = 240,
2023-10-29 23:31:06 +00:00
[241] = 241,
[242] = 242,
[243] = 243,
[244] = 244,
[245] = 245,
[246] = 244,
[247] = 241,
[248] = 248,
[249] = 249,
[250] = 250,
[251] = 251,
[252] = 252,
[253] = 253,
[254] = 254,
2023-10-28 14:28:43 +00:00
[255] = 255,
2023-10-29 23:31:06 +00:00
[256] = 256,
2023-10-28 14:28:43 +00:00
[257] = 257,
2023-10-29 23:31:06 +00:00
[258] = 258,
[259] = 259,
[260] = 243,
[261] = 248,
[262] = 262,
[263] = 249,
2023-10-28 14:28:43 +00:00
[264] = 264,
2023-10-29 23:31:06 +00:00
[265] = 241,
[266] = 248,
2023-10-28 14:28:43 +00:00
[267] = 267,
[268] = 268,
2023-10-29 23:31:06 +00:00
[269] = 251,
[270] = 252,
[271] = 243,
[272] = 254,
2023-10-28 14:28:43 +00:00
[273] = 273,
[274] = 274,
[275] = 275,
2023-10-29 23:31:06 +00:00
[276] = 250,
2023-10-28 14:28:43 +00:00
[277] = 277,
2023-10-29 23:31:06 +00:00
[278] = 273,
[279] = 279,
2023-10-28 14:28:43 +00:00
[280] = 280,
2023-10-29 23:31:06 +00:00
[281] = 281,
[282] = 282,
2023-10-28 14:28:43 +00:00
[283] = 283,
2023-10-29 23:31:06 +00:00
[284] = 251,
2023-10-28 14:28:43 +00:00
[285] = 285,
2023-10-29 23:31:06 +00:00
[286] = 286,
[287] = 254,
[288] = 252,
[289] = 289,
[290] = 286,
[291] = 279,
[292] = 245,
[293] = 262,
[294] = 264,
2023-10-28 14:28:43 +00:00
[295] = 295,
2023-10-29 23:31:06 +00:00
[296] = 286,
[297] = 245,
[298] = 262,
[299] = 264,
2023-10-28 14:28:43 +00:00
[300] = 300,
[301] = 301,
[302] = 302,
2023-10-29 23:31:06 +00:00
[303] = 303,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-10-29 23:31:06 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(26);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(58);
if (lookahead == ',') ADVANCE(47);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '.') ADVANCE(44);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(36);
if (lookahead == 'e') ADVANCE(34);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-29 23:31:06 +00:00
lookahead == ' ') SKIP(20)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-29 23:31:06 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 1:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(47);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '.') ADVANCE(52);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(13);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-29 23:31:06 +00:00
lookahead == ' ') SKIP(3)
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-29 23:31:06 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 2:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(47);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '.') ADVANCE(43);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(13);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-29 23:31:06 +00:00
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 3:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(47);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(52);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(13);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
2023-10-28 14:28:43 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-29 23:31:06 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 4:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == ',') ADVANCE(47);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(52);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(13);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
2023-10-28 14:28:43 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-29 23:31:06 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 5:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(58);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(53);
if (lookahead == '/') ADVANCE(62);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 6:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(44);
if (lookahead == '/') ADVANCE(62);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(7)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 7:
2023-10-29 23:31:06 +00:00
if (lookahead == '!') ADVANCE(11);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(53);
if (lookahead == '/') ADVANCE(62);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(7)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
case 8:
2023-10-29 23:31:06 +00:00
if (lookahead == '"') ADVANCE(45);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
2023-10-29 23:31:06 +00:00
if (lookahead == '&') ADVANCE(66);
END_STATE();
case 10:
2023-10-29 23:31:06 +00:00
if (lookahead == '\'') ADVANCE(45);
2023-10-28 14:28:43 +00:00
if (lookahead != 0) ADVANCE(10);
END_STATE();
case 11:
2023-10-29 23:31:06 +00:00
if (lookahead == '=') ADVANCE(65);
END_STATE();
case 12:
2023-10-29 23:31:06 +00:00
if (lookahead == '=') ADVANCE(64);
END_STATE();
case 13:
2023-10-29 23:31:06 +00:00
if (lookahead == '`') ADVANCE(45);
if (lookahead != 0) ADVANCE(13);
2023-10-28 14:28:43 +00:00
END_STATE();
case 14:
2023-10-29 23:31:06 +00:00
if (lookahead == 'f') ADVANCE(17);
2023-10-28 14:28:43 +00:00
END_STATE();
case 15:
2023-10-29 23:31:06 +00:00
if (lookahead == 'f') ADVANCE(72);
2023-10-28 14:28:43 +00:00
END_STATE();
case 16:
2023-10-29 23:31:06 +00:00
if (lookahead == 'i') ADVANCE(15);
2023-10-28 14:28:43 +00:00
END_STATE();
case 17:
2023-10-29 23:31:06 +00:00
if (lookahead == 'o') ADVANCE(18);
2023-10-28 14:28:43 +00:00
END_STATE();
case 18:
2023-10-29 23:31:06 +00:00
if (lookahead == 'r') ADVANCE(74);
2023-10-28 14:28:43 +00:00
END_STATE();
case 19:
2023-10-29 23:31:06 +00:00
if (lookahead == '|') ADVANCE(67);
END_STATE();
2023-10-28 14:28:43 +00:00
case 20:
2023-10-29 23:31:06 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(26);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == ')') ADVANCE(29);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(58);
if (lookahead == ',') ADVANCE(47);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(53);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == ']') ADVANCE(48);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(36);
if (lookahead == 'e') ADVANCE(34);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-28 14:28:43 +00:00
lookahead == ' ') SKIP(20)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-29 23:31:06 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 21:
2023-10-29 23:31:06 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(26);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(58);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '.') ADVANCE(52);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(36);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-29 23:31:06 +00:00
lookahead == ' ') SKIP(22)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-29 23:31:06 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 22:
2023-10-29 23:31:06 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(26);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(58);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(52);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(36);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(22)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 23:
2023-10-29 23:31:06 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(26);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '.') ADVANCE(43);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(36);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 24:
2023-10-29 23:31:06 +00:00
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(8);
if (lookahead == '#') ADVANCE(26);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(9);
if (lookahead == '\'') ADVANCE(10);
if (lookahead == '(') ADVANCE(28);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(57);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(52);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
if (lookahead == '<') ADVANCE(55);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '>') ADVANCE(56);
if (lookahead == '[') ADVANCE(46);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(36);
if (lookahead == '{') ADVANCE(49);
if (lookahead == '|') ADVANCE(19);
if (lookahead == '}') ADVANCE(51);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 25:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-10-28 14:28:43 +00:00
case 26:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '#') ADVANCE(26);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(27);
END_STATE();
2023-10-28 14:28:43 +00:00
case 27:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(27);
END_STATE();
2023-10-28 14:28:43 +00:00
case 28:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
2023-10-28 14:28:43 +00:00
case 29:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
2023-10-28 14:28:43 +00:00
case 30:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-10-28 14:28:43 +00:00
case 31:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == ' ') ADVANCE(14);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 32:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == 'c') ADVANCE(31);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
2023-10-28 14:28:43 +00:00
END_STATE();
case 33:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == 'e') ADVANCE(73);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
2023-10-28 14:28:43 +00:00
END_STATE();
case 34:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == 'l') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
2023-10-28 14:28:43 +00:00
END_STATE();
case 35:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == 'n') ADVANCE(32);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
2023-10-28 14:28:43 +00:00
END_STATE();
case 36:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == 's') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
2023-10-28 14:28:43 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
2023-10-28 14:28:43 +00:00
END_STATE();
case 37:
ACCEPT_TOKEN(sym_identifier);
2023-10-29 23:31:06 +00:00
if (lookahead == 's') ADVANCE(33);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 38:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 39:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
END_STATE();
2023-10-28 14:28:43 +00:00
case 40:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym__numeric);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(40);
END_STATE();
2023-10-28 14:28:43 +00:00
case 41:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
2023-10-28 14:28:43 +00:00
case 42:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(71);
END_STATE();
2023-10-28 14:28:43 +00:00
case 43:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT);
END_STATE();
2023-10-28 14:28:43 +00:00
case 44:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT);
if (lookahead == '.') ADVANCE(54);
END_STATE();
2023-10-28 14:28:43 +00:00
case 45:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-10-28 14:28:43 +00:00
case 46:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-10-28 14:28:43 +00:00
case 47:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-10-28 14:28:43 +00:00
case 48:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-10-28 14:28:43 +00:00
case 49:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-10-28 14:28:43 +00:00
case 50:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(64);
2023-10-28 14:28:43 +00:00
END_STATE();
case 51:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
2023-10-28 14:28:43 +00:00
END_STATE();
case 52:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT2);
2023-10-28 14:28:43 +00:00
END_STATE();
case 53:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT2);
if (lookahead == '.') ADVANCE(54);
END_STATE();
2023-10-28 14:28:43 +00:00
case 54:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
2023-10-28 14:28:43 +00:00
case 55:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(69);
END_STATE();
2023-10-28 14:28:43 +00:00
case 56:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(68);
END_STATE();
2023-10-28 14:28:43 +00:00
case 57:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
2023-10-28 14:28:43 +00:00
case 58:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(70);
2023-10-28 14:28:43 +00:00
END_STATE();
case 59:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH2);
END_STATE();
2023-10-28 14:28:43 +00:00
case 60:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH2);
if (lookahead == '=') ADVANCE(71);
END_STATE();
2023-10-28 14:28:43 +00:00
case 61:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
2023-10-28 14:28:43 +00:00
case 62:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-10-28 14:28:43 +00:00
case 63:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-10-28 14:28:43 +00:00
case 64:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 65:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 66:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
2023-10-28 14:28:43 +00:00
case 67:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
2023-10-28 14:28:43 +00:00
case 68:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 69:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 70:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 71:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
2023-10-28 14:28:43 +00:00
case 72:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_else);
2023-10-29 23:31:06 +00:00
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(30);
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-23 20:12:43 +00:00
lookahead == '_' ||
2023-10-29 23:31:06 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(39);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-10-29 23:31:06 +00:00
case 74:
2023-10-28 14:28:43 +00:00
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},
2023-10-29 23:31:06 +00:00
[2] = {.lex_state = 1},
[3] = {.lex_state = 1},
[4] = {.lex_state = 1},
[5] = {.lex_state = 21},
2023-10-28 14:28:43 +00:00
[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},
2023-10-29 23:31:06 +00:00
[35] = {.lex_state = 1},
[36] = {.lex_state = 1},
[37] = {.lex_state = 1},
[38] = {.lex_state = 21},
[39] = {.lex_state = 21},
[40] = {.lex_state = 21},
[41] = {.lex_state = 21},
[42] = {.lex_state = 21},
[43] = {.lex_state = 21},
[44] = {.lex_state = 21},
[45] = {.lex_state = 23},
[46] = {.lex_state = 23},
[47] = {.lex_state = 21},
[48] = {.lex_state = 21},
[49] = {.lex_state = 21},
[50] = {.lex_state = 21},
[51] = {.lex_state = 21},
[52] = {.lex_state = 21},
[53] = {.lex_state = 21},
[54] = {.lex_state = 21},
[55] = {.lex_state = 21},
[56] = {.lex_state = 21},
[57] = {.lex_state = 21},
[58] = {.lex_state = 21},
[59] = {.lex_state = 21},
[60] = {.lex_state = 21},
[61] = {.lex_state = 21},
[62] = {.lex_state = 21},
[63] = {.lex_state = 21},
[64] = {.lex_state = 21},
[65] = {.lex_state = 21},
2023-10-28 14:28:43 +00:00
[66] = {.lex_state = 1},
2023-10-29 23:31:06 +00:00
[67] = {.lex_state = 0},
[68] = {.lex_state = 1},
[69] = {.lex_state = 1},
[70] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[71] = {.lex_state = 1},
2023-10-29 23:31:06 +00:00
[72] = {.lex_state = 2},
[73] = {.lex_state = 1},
[74] = {.lex_state = 2},
[75] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[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},
2023-10-29 23:31:06 +00:00
[89] = {.lex_state = 1},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
[92] = {.lex_state = 1},
[93] = {.lex_state = 1},
[94] = {.lex_state = 1},
[95] = {.lex_state = 1},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
[104] = {.lex_state = 1},
[105] = {.lex_state = 1},
[106] = {.lex_state = 1},
[107] = {.lex_state = 1},
[108] = {.lex_state = 1},
[109] = {.lex_state = 1},
[110] = {.lex_state = 0},
[111] = {.lex_state = 0},
[112] = {.lex_state = 1},
[113] = {.lex_state = 1},
[114] = {.lex_state = 1},
[115] = {.lex_state = 1},
[116] = {.lex_state = 1},
[117] = {.lex_state = 1},
[118] = {.lex_state = 1},
[119] = {.lex_state = 1},
[120] = {.lex_state = 1},
[121] = {.lex_state = 1},
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
[126] = {.lex_state = 1},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 1},
[130] = {.lex_state = 1},
[131] = {.lex_state = 1},
[132] = {.lex_state = 1},
[133] = {.lex_state = 1},
[134] = {.lex_state = 1},
[135] = {.lex_state = 1},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 21},
[143] = {.lex_state = 21},
[144] = {.lex_state = 21},
[145] = {.lex_state = 21},
[146] = {.lex_state = 21},
[147] = {.lex_state = 21},
[148] = {.lex_state = 21},
[149] = {.lex_state = 21},
[150] = {.lex_state = 21},
[151] = {.lex_state = 21},
[152] = {.lex_state = 21},
[153] = {.lex_state = 21},
[154] = {.lex_state = 21},
[155] = {.lex_state = 21},
[156] = {.lex_state = 21},
[157] = {.lex_state = 21},
[158] = {.lex_state = 21},
[159] = {.lex_state = 5},
[160] = {.lex_state = 5},
[161] = {.lex_state = 5},
[162] = {.lex_state = 6},
[163] = {.lex_state = 6},
[164] = {.lex_state = 5},
[165] = {.lex_state = 5},
[166] = {.lex_state = 5},
[167] = {.lex_state = 5},
[168] = {.lex_state = 5},
[169] = {.lex_state = 5},
[170] = {.lex_state = 5},
[171] = {.lex_state = 5},
[172] = {.lex_state = 5},
[173] = {.lex_state = 5},
[174] = {.lex_state = 5},
[175] = {.lex_state = 5},
[176] = {.lex_state = 5},
[177] = {.lex_state = 5},
[178] = {.lex_state = 5},
[179] = {.lex_state = 5},
[180] = {.lex_state = 5},
[181] = {.lex_state = 5},
[182] = {.lex_state = 5},
[183] = {.lex_state = 5},
[184] = {.lex_state = 5},
[185] = {.lex_state = 5},
[186] = {.lex_state = 5},
[187] = {.lex_state = 5},
[188] = {.lex_state = 5},
[189] = {.lex_state = 5},
[190] = {.lex_state = 5},
[191] = {.lex_state = 5},
[192] = {.lex_state = 5},
[193] = {.lex_state = 5},
[194] = {.lex_state = 5},
[195] = {.lex_state = 5},
[196] = {.lex_state = 5},
[197] = {.lex_state = 5},
[198] = {.lex_state = 5},
[199] = {.lex_state = 5},
[200] = {.lex_state = 5},
[201] = {.lex_state = 5},
[202] = {.lex_state = 5},
[203] = {.lex_state = 5},
[204] = {.lex_state = 5},
[205] = {.lex_state = 5},
[206] = {.lex_state = 5},
[207] = {.lex_state = 1},
[208] = {.lex_state = 1},
[209] = {.lex_state = 1},
[210] = {.lex_state = 1},
[211] = {.lex_state = 1},
[212] = {.lex_state = 1},
[213] = {.lex_state = 1},
[214] = {.lex_state = 1},
[215] = {.lex_state = 1},
[216] = {.lex_state = 1},
[217] = {.lex_state = 1},
[218] = {.lex_state = 1},
[219] = {.lex_state = 1},
[220] = {.lex_state = 1},
[221] = {.lex_state = 1},
[222] = {.lex_state = 1},
[223] = {.lex_state = 1},
[224] = {.lex_state = 1},
[225] = {.lex_state = 1},
[226] = {.lex_state = 1},
[227] = {.lex_state = 1},
[228] = {.lex_state = 1},
[229] = {.lex_state = 1},
[230] = {.lex_state = 1},
[231] = {.lex_state = 1},
[232] = {.lex_state = 1},
[233] = {.lex_state = 1},
[234] = {.lex_state = 1},
[235] = {.lex_state = 1},
[236] = {.lex_state = 0},
[237] = {.lex_state = 0},
[238] = {.lex_state = 0},
[239] = {.lex_state = 1},
[240] = {.lex_state = 0},
[241] = {.lex_state = 0},
[242] = {.lex_state = 0},
[243] = {.lex_state = 0},
[244] = {.lex_state = 1},
[245] = {.lex_state = 0},
[246] = {.lex_state = 1},
[247] = {.lex_state = 0},
[248] = {.lex_state = 0},
[249] = {.lex_state = 1},
[250] = {.lex_state = 1},
[251] = {.lex_state = 0},
[252] = {.lex_state = 0},
[253] = {.lex_state = 1},
[254] = {.lex_state = 0},
[255] = {.lex_state = 0},
[256] = {.lex_state = 0},
[257] = {.lex_state = 1},
[258] = {.lex_state = 1},
[259] = {.lex_state = 1},
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},
2023-10-29 23:31:06 +00:00
[263] = {.lex_state = 1},
[264] = {.lex_state = 0},
[265] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[266] = {.lex_state = 0},
[267] = {.lex_state = 0},
[268] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[269] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[270] = {.lex_state = 0},
[271] = {.lex_state = 0},
[272] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[273] = {.lex_state = 1},
[274] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[275] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[276] = {.lex_state = 1},
[277] = {.lex_state = 0},
[278] = {.lex_state = 1},
2023-10-28 14:28:43 +00:00
[279] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[280] = {.lex_state = 1},
[281] = {.lex_state = 1},
[282] = {.lex_state = 1},
[283] = {.lex_state = 1},
[284] = {.lex_state = 0},
[285] = {.lex_state = 1},
2023-10-28 14:28:43 +00:00
[286] = {.lex_state = 0},
[287] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[288] = {.lex_state = 0},
[289] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[290] = {.lex_state = 0},
[291] = {.lex_state = 0},
[292] = {.lex_state = 0},
[293] = {.lex_state = 0},
[294] = {.lex_state = 0},
[295] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[296] = {.lex_state = 0},
[297] = {.lex_state = 0},
[298] = {.lex_state = 0},
[299] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[300] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[301] = {.lex_state = 0},
2023-10-28 14:28:43 +00:00
[302] = {.lex_state = 0},
2023-10-29 23:31:06 +00:00
[303] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[aux_sym_comment_token1] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[sym__numeric] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_DOT] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_DOT2] = ACTIONS(1),
[anon_sym_DOT_DOT] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[anon_sym_DASH2] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
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-29 23:31:06 +00:00
[sym_root] = STATE(240),
[sym_item] = STATE(6),
2023-10-22 20:32:55 +00:00
[sym_statement] = STATE(27),
2023-10-29 23:31:06 +00:00
[sym_comment] = STATE(148),
[sym_expression] = STATE(40),
[sym__expression_kind] = STATE(61),
[sym_value] = STATE(61),
[sym_integer] = STATE(56),
[sym_float] = STATE(56),
[sym_boolean] = STATE(56),
[sym_list] = STATE(56),
[sym_map] = STATE(56),
[sym_index] = STATE(61),
[sym_function] = STATE(56),
[sym_table] = STATE(56),
[sym_math] = STATE(61),
[sym_logic] = STATE(61),
[sym_assignment] = STATE(148),
[sym_if_else] = STATE(148),
[sym_if] = STATE(70),
[sym_function_call] = STATE(61),
[sym_while] = STATE(148),
[sym_for] = STATE(148),
[sym_transform] = STATE(148),
[sym_filter] = STATE(148),
[sym_find] = STATE(148),
[sym_remove] = STATE(148),
[sym_select] = STATE(148),
[sym_insert] = STATE(148),
[sym_async] = STATE(148),
[sym_tool] = STATE(61),
[aux_sym_root_repeat1] = STATE(6),
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),
2023-10-29 23:31:06 +00:00
[sym__numeric] = ACTIONS(9),
[anon_sym_DASH] = ACTIONS(11),
[sym_string] = ACTIONS(13),
[anon_sym_true] = ACTIONS(15),
[anon_sym_false] = ACTIONS(15),
[anon_sym_LBRACK] = ACTIONS(17),
2023-10-21 17:04:17 +00:00
[anon_sym_LBRACE] = ACTIONS(19),
2023-10-29 23:31:06 +00:00
[anon_sym_function] = ACTIONS(21),
[anon_sym_table] = ACTIONS(23),
[anon_sym_if] = ACTIONS(25),
[anon_sym_while] = ACTIONS(27),
[anon_sym_for] = ACTIONS(29),
[anon_sym_asyncfor] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_select] = ACTIONS(41),
[anon_sym_insert] = ACTIONS(43),
[anon_sym_async] = ACTIONS(45),
2023-10-21 17:04:17 +00:00
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-29 23:31:06 +00:00
[0] = 15,
2023-10-22 20:41:37 +00:00
ACTIONS(47), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
2023-10-22 20:41:37 +00:00
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-22 20:41:37 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-22 20:41:37 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
STATE(107), 1,
2023-10-22 20:41:37 +00:00
sym__tool_kind,
2023-10-29 23:31:06 +00:00
STATE(203), 1,
2023-10-22 20:41:37 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-22 20:41:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
2023-10-22 20:41:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-22 20:41:37 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(205), 7,
2023-10-22 20:41:37 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-22 20:41:37 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
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,
2023-10-29 23:31:06 +00:00
[89] = 15,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
2023-10-22 20:50:09 +00:00
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-22 20:50:09 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 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-29 23:31:06 +00:00
STATE(101), 1,
2023-10-22 20:50:09 +00:00
sym__tool_kind,
2023-10-29 23:31:06 +00:00
STATE(203), 1,
2023-10-22 20:50:09 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(206), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(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,
2023-10-29 23:31:06 +00:00
[178] = 15,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
ACTIONS(73), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(96), 1,
2023-10-28 14:28:43 +00:00
sym__tool_kind,
2023-10-29 23:31:06 +00:00
STATE(203), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-22 20:50:09 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-22 20:50:09 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-22 20:50:09 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(204), 7,
2023-10-22 20:50:09 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
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,
2023-10-29 23:31:06 +00:00
[267] = 30,
2023-10-28 14:28:43 +00:00
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-29 23:31:06 +00:00
sym__numeric,
ACTIONS(91), 1,
anon_sym_DASH,
ACTIONS(94), 1,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(100), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
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-29 23:31:06 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(109), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(112), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(115), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-28 14:28:43 +00:00
ACTIONS(118), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-28 14:28:43 +00:00
ACTIONS(121), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-28 14:28:43 +00:00
ACTIONS(124), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-28 14:28:43 +00:00
ACTIONS(127), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(130), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(133), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(136), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(139), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(142), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(97), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(5), 2,
2023-10-21 20:38:20 +00:00
sym_item,
aux_sym_root_repeat1,
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-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[384] = 30,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(145), 1,
2023-10-21 20:38:20 +00:00
ts_builtin_sym_end,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(5), 2,
2023-10-21 20:38:20 +00:00
sym_item,
aux_sym_root_repeat1,
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-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[501] = 29,
2023-10-28 14:28:43 +00:00
ACTIONS(149), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
ACTIONS(152), 1,
2023-10-29 23:31:06 +00:00
aux_sym_comment_token1,
2023-10-22 20:41:37 +00:00
ACTIONS(155), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(158), 1,
sym__numeric,
ACTIONS(161), 1,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
ACTIONS(164), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(170), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(173), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
ACTIONS(176), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
ACTIONS(179), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-28 14:28:43 +00:00
ACTIONS(182), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(185), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-28 14:28:43 +00:00
ACTIONS(188), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-28 14:28:43 +00:00
ACTIONS(191), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-28 14:28:43 +00:00
ACTIONS(194), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-28 14:28:43 +00:00
ACTIONS(197), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(200), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(203), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(206), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
ACTIONS(209), 1,
anon_sym_insert,
ACTIONS(212), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(147), 2,
2023-10-22 20:32:55 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(167), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(7), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[615] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(252), 1,
sym_item,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[728] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(284), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[841] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(301), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-22 18:48:34 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-22 18:48:34 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-22 18:48:34 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-22 18:48:34 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-22 18:48:34 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[954] = 29,
2023-10-22 20:32:55 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-22 20:32:55 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-22 20:32:55 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-22 20:32:55 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-22 20:32:55 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-22 20:32:55 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-22 20:32:55 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-22 20:32:55 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-22 20:32:55 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-22 20:32:55 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-22 20:32:55 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-22 20:32:55 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-22 20:32:55 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-22 20:32:55 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-22 18:48:34 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-22 18:48:34 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(270), 1,
2023-10-22 20:32:55 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-22 20:32:55 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1067] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(269), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1180] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(300), 1,
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1293] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(295), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1406] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(289), 1,
2023-10-28 14:28:43 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1519] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(266), 1,
2023-10-28 14:28:43 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1632] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(288), 1,
sym_item,
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1745] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(261), 1,
2023-10-28 14:28:43 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1858] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(251), 1,
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[1971] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
anon_sym_async,
ACTIONS(215), 1,
anon_sym_RBRACE,
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
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-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2084] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(248), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2197] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(255), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2310] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(302), 1,
2023-10-21 20:38:20 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2423] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(217), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(7), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2536] = 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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-21 20:38:20 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-21 20:38:20 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-21 20:38:20 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-21 20:38:20 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(219), 1,
anon_sym_RBRACE,
STATE(40), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(7), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2649] = 29,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-29 23:31:06 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_select,
ACTIONS(43), 1,
anon_sym_insert,
ACTIONS(45), 1,
anon_sym_async,
STATE(40), 1,
sym_expression,
STATE(70), 1,
sym_if,
STATE(275), 1,
sym_item,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
STATE(24), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(56), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(148), 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-29 23:31:06 +00:00
[2762] = 8,
STATE(40), 1,
sym_expression,
STATE(70), 1,
sym_if,
STATE(7), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(56), 7,
2023-10-22 20:32:55 +00:00
sym_integer,
2023-10-29 23:31:06 +00:00
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(217), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_asyncfor,
STATE(148), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
ACTIONS(221), 15,
sym_identifier,
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-29 23:31:06 +00:00
[2833] = 29,
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,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-22 20:32:55 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-22 20:32:55 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 20:38:20 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 20:38:20 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 20:38:20 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 20:38:20 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 20:38:20 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-22 20:32:55 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-22 20:32:55 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-22 20:32:55 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-22 20:32:55 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-22 20:32:55 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(256), 1,
2023-10-22 20:32:55 +00:00
sym_item,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(24), 2,
2023-10-22 20:32:55 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[2946] = 28,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 17:19:01 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 17:19:01 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 17:19:01 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 17:19:01 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(45), 1,
anon_sym_async,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
anon_sym_LBRACK,
ACTIONS(61), 1,
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-29 23:31:06 +00:00
ACTIONS(227), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-28 14:28:43 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(201), 1,
sym_expression,
STATE(267), 1,
sym_statement,
ACTIONS(57), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[3055] = 28,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 17:19:01 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 17:19:01 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 17:19:01 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 17:19:01 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(45), 1,
anon_sym_async,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
anon_sym_LBRACK,
ACTIONS(61), 1,
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-29 23:31:06 +00:00
ACTIONS(227), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-28 14:28:43 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(201), 1,
sym_expression,
STATE(277), 1,
sym_statement,
ACTIONS(57), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[3164] = 28,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-21 17:19:01 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-21 17:19:01 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-21 17:19:01 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-21 17:19:01 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-21 17:19:01 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(45), 1,
anon_sym_async,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
anon_sym_LBRACK,
ACTIONS(61), 1,
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-29 23:31:06 +00:00
ACTIONS(227), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
sym_if,
2023-10-29 23:31:06 +00:00
STATE(201), 1,
sym_expression,
STATE(303), 1,
sym_statement,
ACTIONS(57), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[3273] = 28,
2023-10-28 14:28:43 +00:00
ACTIONS(3), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(17), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-22 18:48:34 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-22 18:48:34 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-22 18:48:34 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-22 18:48:34 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-22 18:48:34 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-22 18:48:34 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
2023-10-28 14:28:43 +00:00
ACTIONS(41), 1,
2023-10-29 23:31:06 +00:00
anon_sym_select,
2023-10-28 14:28:43 +00:00
ACTIONS(43), 1,
2023-10-29 23:31:06 +00:00
anon_sym_insert,
ACTIONS(45), 1,
2023-10-28 14:28:43 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
STATE(40), 1,
2023-10-22 20:32:55 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-28 14:28:43 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(152), 1,
sym_statement,
ACTIONS(15), 2,
2023-10-22 20:32:55 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-22 20:32:55 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-22 20:32:55 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-22 20:32:55 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-22 20:32:55 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 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-29 23:31:06 +00:00
[3382] = 28,
2023-10-22 20:32:55 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
ACTIONS(25), 1,
2023-10-29 23:31:06 +00:00
anon_sym_if,
2023-10-28 14:28:43 +00:00
ACTIONS(27), 1,
2023-10-29 23:31:06 +00:00
anon_sym_while,
2023-10-28 14:28:43 +00:00
ACTIONS(29), 1,
2023-10-29 23:31:06 +00:00
anon_sym_for,
2023-10-28 14:28:43 +00:00
ACTIONS(31), 1,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
2023-10-28 14:28:43 +00:00
ACTIONS(33), 1,
2023-10-29 23:31:06 +00:00
anon_sym_transform,
2023-10-28 14:28:43 +00:00
ACTIONS(35), 1,
2023-10-29 23:31:06 +00:00
anon_sym_filter,
2023-10-28 14:28:43 +00:00
ACTIONS(37), 1,
2023-10-29 23:31:06 +00:00
anon_sym_find,
2023-10-28 14:28:43 +00:00
ACTIONS(39), 1,
2023-10-29 23:31:06 +00:00
anon_sym_remove,
ACTIONS(45), 1,
anon_sym_async,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
anon_sym_LBRACK,
ACTIONS(61), 1,
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(223), 1,
sym_identifier,
ACTIONS(225), 1,
2023-10-28 14:28:43 +00:00
anon_sym_select,
2023-10-29 23:31:06 +00:00
ACTIONS(227), 1,
2023-10-28 14:28:43 +00:00
anon_sym_insert,
2023-10-29 23:31:06 +00:00
STATE(70), 1,
2023-10-28 14:28:43 +00:00
sym_if,
2023-10-29 23:31:06 +00:00
STATE(152), 1,
2023-10-28 14:28:43 +00:00
sym_statement,
2023-10-29 23:31:06 +00:00
STATE(201), 1,
sym_expression,
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
STATE(148), 12,
2023-10-28 14:28:43 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-29 23:31:06 +00:00
[3491] = 5,
ACTIONS(233), 1,
anon_sym_EQ,
STATE(32), 1,
sym_assignment_operator,
ACTIONS(235), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(229), 19,
ts_builtin_sym_end,
2023-10-28 14:28:43 +00:00
aux_sym_comment_token1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
sym__numeric,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT2,
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_asyncfor,
ACTIONS(231), 20,
sym_identifier,
anon_sym_DASH,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-29 23:31:06 +00:00
anon_sym_select,
anon_sym_insert,
2023-10-28 14:28:43 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
[3545] = 17,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(241), 1,
anon_sym_RPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(93), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
ACTIONS(231), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH2,
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
ACTIONS(229), 11,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3622] = 17,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(259), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(104), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
ACTIONS(231), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH2,
STATE(103), 7,
2023-10-28 14:28:43 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
ACTIONS(229), 11,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3699] = 17,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(261), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(99), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
ACTIONS(231), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH2,
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
ACTIONS(229), 11,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[3776] = 10,
ACTIONS(267), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(269), 1,
anon_sym_DOT2,
ACTIONS(275), 1,
anon_sym_DASH2,
STATE(113), 1,
sym_math_operator,
STATE(127), 1,
sym_logic_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(273), 4,
anon_sym_PLUS,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
ACTIONS(263), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(265), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[3838] = 10,
ACTIONS(269), 1,
anon_sym_DOT2,
ACTIONS(275), 1,
anon_sym_DASH2,
ACTIONS(283), 1,
anon_sym_LBRACE,
STATE(113), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
STATE(127), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(273), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
ACTIONS(279), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(281), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[3900] = 9,
ACTIONS(269), 1,
anon_sym_DOT2,
ACTIONS(275), 1,
anon_sym_DASH2,
STATE(113), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
STATE(127), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
ACTIONS(285), 10,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(287), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[3960] = 8,
ACTIONS(275), 1,
anon_sym_DASH2,
STATE(113), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
STATE(127), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
ACTIONS(289), 11,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(291), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[4018] = 4,
STATE(113), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
STATE(127), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(295), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(293), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
2023-10-29 23:31:06 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
[4068] = 9,
ACTIONS(269), 1,
anon_sym_DOT2,
ACTIONS(275), 1,
anon_sym_DASH2,
STATE(113), 1,
sym_math_operator,
STATE(127), 1,
sym_logic_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(273), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
ACTIONS(297), 10,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(299), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[4128] = 9,
ACTIONS(269), 1,
anon_sym_DOT2,
ACTIONS(275), 1,
anon_sym_DASH2,
STATE(113), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
STATE(127), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 4,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
ACTIONS(301), 10,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(303), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[4188] = 3,
ACTIONS(309), 1,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(307), 19,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_DOT2,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(305), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4235] = 3,
ACTIONS(315), 1,
anon_sym_DOT,
ACTIONS(313), 19,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(311), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
2023-10-28 14:28:43 +00:00
anon_sym_DASH,
2023-10-29 23:31:06 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4282] = 2,
ACTIONS(319), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(317), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4326] = 2,
ACTIONS(323), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(321), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
[4370] = 2,
ACTIONS(327), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(325), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
[4414] = 2,
ACTIONS(331), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(329), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4458] = 2,
ACTIONS(335), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(333), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4502] = 2,
ACTIONS(339), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(337), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4546] = 2,
ACTIONS(343), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(341), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4590] = 2,
ACTIONS(347), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(345), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4634] = 2,
ACTIONS(351), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
2023-10-22 20:32:55 +00:00
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
2023-10-28 14:28:43 +00:00
anon_sym_select,
anon_sym_insert,
2023-10-22 20:32:55 +00:00
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(349), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4678] = 2,
ACTIONS(355), 18,
2023-10-21 20:38:20 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(353), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4722] = 2,
ACTIONS(359), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(357), 21,
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,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4766] = 2,
ACTIONS(363), 18,
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(361), 21,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4810] = 2,
ACTIONS(367), 18,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(365), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4854] = 2,
ACTIONS(371), 18,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(369), 21,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4898] = 2,
ACTIONS(375), 18,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(373), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-21 17:04:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4942] = 2,
ACTIONS(379), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(377), 21,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-18 22:18:41 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-18 22:18:41 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-18 22:18:41 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[4986] = 2,
ACTIONS(383), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(381), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[5030] = 2,
ACTIONS(387), 18,
2023-10-18 22:18:41 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-18 22:18:41 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(385), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
[5074] = 2,
ACTIONS(391), 18,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
ACTIONS(389), 21,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
anon_sym_asyncfor,
[5118] = 9,
ACTIONS(275), 1,
anon_sym_DASH2,
ACTIONS(393), 1,
anon_sym_DOT2,
STATE(128), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(134), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(303), 5,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(301), 9,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[5167] = 6,
ACTIONS(399), 1,
2023-10-28 14:28:43 +00:00
anon_sym_elseif,
2023-10-29 23:31:06 +00:00
ACTIONS(401), 1,
2023-10-28 14:28:43 +00:00
anon_sym_else,
2023-10-29 23:31:06 +00:00
STATE(144), 1,
2023-10-28 14:28:43 +00:00
sym_else,
2023-10-29 23:31:06 +00:00
STATE(75), 2,
2023-10-28 14:28:43 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(395), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(397), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[5210] = 10,
ACTIONS(275), 1,
anon_sym_DASH2,
ACTIONS(393), 1,
anon_sym_DOT2,
ACTIONS(407), 1,
anon_sym_COMMA,
STATE(128), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(134), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(403), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(405), 8,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[5261] = 4,
STATE(128), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(134), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(295), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(293), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[5300] = 6,
ACTIONS(399), 1,
2023-10-28 14:28:43 +00:00
anon_sym_elseif,
2023-10-29 23:31:06 +00:00
ACTIONS(401), 1,
anon_sym_else,
STATE(143), 1,
sym_else,
STATE(67), 2,
2023-10-28 14:28:43 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(409), 10,
2023-10-28 14:28:43 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(411), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[5343] = 8,
ACTIONS(275), 1,
anon_sym_DASH2,
STATE(128), 1,
sym_logic_operator,
STATE(134), 1,
sym_math_operator,
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(291), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
2023-10-29 23:31:06 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 10,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
[5390] = 3,
ACTIONS(413), 1,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(313), 9,
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(311), 19,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[5426] = 15,
ACTIONS(415), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(418), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(423), 1,
sym__numeric,
ACTIONS(426), 1,
anon_sym_DASH,
ACTIONS(429), 1,
2023-10-21 17:19:01 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(435), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(438), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(441), 1,
anon_sym_function,
ACTIONS(444), 1,
anon_sym_table,
STATE(68), 1,
sym_expression,
STATE(73), 1,
aux_sym_list_repeat1,
ACTIONS(421), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
ACTIONS(432), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[5486] = 3,
ACTIONS(447), 1,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(307), 9,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(305), 19,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:19:01 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[5522] = 4,
ACTIONS(453), 1,
anon_sym_elseif,
STATE(75), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(449), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(451), 16,
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[5560] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
ACTIONS(456), 1,
anon_sym_RBRACK,
STATE(68), 1,
sym_expression,
STATE(73), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
2023-10-19 01:50:45 +00:00
sym_integer,
2023-10-29 23:31:06 +00:00
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[5619] = 2,
ACTIONS(319), 8,
sym_identifier,
2023-10-19 01:50:45 +00:00
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,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(317), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-18 22:18:41 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[5652] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
ACTIONS(458), 1,
anon_sym_RPAREN,
STATE(68), 1,
sym_expression,
STATE(73), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[5711] = 15,
ACTIONS(237), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
ACTIONS(460), 1,
anon_sym_RBRACK,
STATE(68), 1,
sym_expression,
STATE(98), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
sym_integer,
2023-10-29 23:31:06 +00:00
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[5770] = 2,
ACTIONS(371), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(369), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[5803] = 15,
ACTIONS(237), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
ACTIONS(462), 1,
anon_sym_RPAREN,
STATE(68), 1,
sym_expression,
STATE(73), 1,
aux_sym_list_repeat1,
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
sym_integer,
2023-10-29 23:31:06 +00:00
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[5862] = 2,
ACTIONS(351), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(349), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5895] = 2,
2023-10-29 23:31:06 +00:00
ACTIONS(363), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(361), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[5928] = 2,
2023-10-29 23:31:06 +00:00
ACTIONS(347), 8,
2023-10-28 14:28:43 +00:00
sym_identifier,
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,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(345), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
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,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5961] = 2,
2023-10-29 23:31:06 +00:00
ACTIONS(391), 8,
sym_identifier,
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-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(389), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
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,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[5994] = 2,
2023-10-29 23:31:06 +00:00
ACTIONS(383), 8,
2023-10-21 17:19:01 +00:00
sym_identifier,
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,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(381), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
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,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-28 14:28:43 +00:00
[6027] = 2,
2023-10-29 23:31:06 +00:00
ACTIONS(331), 8,
2023-10-18 22:18:41 +00:00
sym_identifier,
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,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(329), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
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,
2023-10-29 23:31:06 +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
[6060] = 2,
2023-10-29 23:31:06 +00:00
ACTIONS(387), 8,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(385), 20,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-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-29 23:31:06 +00:00
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[6093] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(251), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
2023-10-29 23:31:06 +00:00
ACTIONS(257), 1,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(464), 1,
anon_sym_RBRACK,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(76), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6152] = 2,
ACTIONS(339), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
ACTIONS(337), 20,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6185] = 2,
ACTIONS(323), 8,
2023-10-18 22:18:41 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(321), 20,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6218] = 2,
ACTIONS(367), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(365), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6251] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
ACTIONS(466), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(73), 1,
2023-10-21 20:38:20 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6310] = 2,
ACTIONS(327), 8,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
ACTIONS(325), 20,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6343] = 2,
ACTIONS(335), 8,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(333), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
2023-10-21 20:38:20 +00:00
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6376] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
ACTIONS(468), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(100), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 20:38:20 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6435] = 2,
ACTIONS(359), 8,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
ACTIONS(357), 20,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6468] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(470), 1,
anon_sym_RBRACK,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(73), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6527] = 15,
ACTIONS(237), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(472), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(73), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6586] = 15,
ACTIONS(237), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(474), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(73), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6645] = 15,
ACTIONS(237), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(476), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
STATE(68), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(78), 1,
2023-10-28 14:28:43 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6704] = 2,
ACTIONS(343), 8,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(341), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6737] = 2,
ACTIONS(355), 8,
sym_identifier,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
ACTIONS(353), 20,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6770] = 15,
ACTIONS(237), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(478), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(73), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:04:17 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6829] = 15,
ACTIONS(237), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(480), 1,
anon_sym_RBRACK,
STATE(68), 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-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6888] = 2,
ACTIONS(375), 8,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH2,
ACTIONS(373), 20,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
anon_sym_RPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6921] = 15,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(482), 1,
anon_sym_RPAREN,
STATE(68), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(81), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[6980] = 15,
ACTIONS(237), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(239), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(484), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACK,
2023-10-29 23:31:06 +00:00
STATE(68), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
STATE(73), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7039] = 2,
ACTIONS(379), 8,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(377), 20,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_DOT2,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[7072] = 2,
ACTIONS(486), 11,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(488), 16,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7104] = 2,
ACTIONS(490), 11,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
anon_sym_asyncfor,
ACTIONS(492), 16,
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-29 23:31:06 +00:00
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7136] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
anon_sym_LBRACK,
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(494), 1,
sym_identifier,
STATE(39), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7189] = 13,
ACTIONS(7), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(494), 1,
sym_identifier,
STATE(42), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7242] = 13,
ACTIONS(49), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(187), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7295] = 13,
ACTIONS(49), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(185), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7348] = 13,
ACTIONS(49), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(161), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7401] = 13,
ACTIONS(7), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(494), 1,
sym_identifier,
STATE(44), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7454] = 13,
ACTIONS(49), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(190), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7507] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(160), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-21 17:19:01 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 17:19:01 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[7560] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(159), 1,
sym_expression,
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
2023-10-28 14:28:43 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7613] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(195), 1,
sym_expression,
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7666] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(191), 1,
sym_expression,
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7719] = 13,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
anon_sym_LBRACK,
ACTIONS(253), 1,
anon_sym_LBRACE,
ACTIONS(255), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-29 23:31:06 +00:00
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
STATE(66), 1,
sym_expression,
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
sym_integer,
2023-10-19 01:50:45 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7772] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
2023-10-19 01:50:45 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(189), 1,
sym_expression,
ACTIONS(57), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
2023-10-19 01:50:45 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7825] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
2023-10-19 01:50:45 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(194), 1,
sym_expression,
ACTIONS(57), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7878] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(186), 1,
sym_expression,
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
2023-10-18 23:26:49 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7931] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
2023-10-18 23:26:49 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(494), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(41), 1,
sym_expression,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7984] = 13,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
anon_sym_LPAREN,
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(251), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-29 23:31:06 +00:00
ACTIONS(257), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
STATE(71), 1,
sym_expression,
ACTIONS(249), 2,
anon_sym_true,
anon_sym_false,
STATE(103), 7,
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(106), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8037] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(17), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(494), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(43), 1,
sym_expression,
ACTIONS(15), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(61), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8090] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(198), 1,
sym_expression,
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
2023-10-21 17:19:01 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8143] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
2023-10-21 17:19:01 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(184), 1,
sym_expression,
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8196] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
anon_sym_table,
ACTIONS(496), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(197), 1,
sym_expression,
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
sym_float,
2023-10-29 23:31:06 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(177), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8249] = 13,
ACTIONS(49), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
2023-10-29 23:31:06 +00:00
ACTIONS(59), 1,
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
2023-10-29 23:31:06 +00:00
ACTIONS(65), 1,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(196), 1,
sym_expression,
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
2023-10-28 14:28:43 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8302] = 13,
ACTIONS(237), 1,
sym_identifier,
ACTIONS(239), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(243), 1,
sym__numeric,
ACTIONS(245), 1,
anon_sym_DASH,
ACTIONS(247), 1,
sym_string,
ACTIONS(251), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(253), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(255), 1,
anon_sym_function,
ACTIONS(257), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
STATE(69), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(249), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(103), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(106), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8355] = 13,
ACTIONS(49), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(202), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8408] = 13,
ACTIONS(49), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
STATE(200), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8461] = 13,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(199), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8514] = 13,
2023-10-28 14:28:43 +00:00
ACTIONS(49), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
2023-10-28 14:28:43 +00:00
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-28 14:28:43 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-28 14:28:43 +00:00
ACTIONS(61), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(188), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8567] = 13,
ACTIONS(49), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(192), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8620] = 13,
ACTIONS(49), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(51), 1,
sym__numeric,
ACTIONS(53), 1,
anon_sym_DASH,
ACTIONS(55), 1,
sym_string,
ACTIONS(59), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(61), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(63), 1,
anon_sym_function,
ACTIONS(65), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(496), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(193), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(57), 2,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(170), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(177), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8673] = 13,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(9), 1,
sym__numeric,
ACTIONS(11), 1,
anon_sym_DASH,
ACTIONS(13), 1,
sym_string,
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-29 23:31:06 +00:00
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(494), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(38), 1,
2023-10-28 14:28:43 +00:00
sym_expression,
2023-10-29 23:31:06 +00:00
ACTIONS(15), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
STATE(56), 7,
sym_integer,
sym_float,
2023-10-28 14:28:43 +00:00
sym_boolean,
sym_list,
2023-10-29 23:31:06 +00:00
sym_map,
2023-10-28 14:28:43 +00:00
sym_function,
sym_table,
2023-10-29 23:31:06 +00:00
STATE(61), 7,
2023-10-28 14:28:43 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-28 14:28:43 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-29 23:31:06 +00:00
[8726] = 2,
ACTIONS(498), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(500), 15,
sym_identifier,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8756] = 2,
ACTIONS(395), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(397), 15,
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8786] = 2,
ACTIONS(502), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
sym_string,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(504), 15,
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8816] = 2,
ACTIONS(506), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(508), 15,
sym_identifier,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8846] = 2,
ACTIONS(510), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(512), 15,
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8876] = 2,
ACTIONS(514), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(516), 15,
2023-10-18 22:18:41 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8906] = 2,
ACTIONS(285), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(287), 15,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8936] = 2,
ACTIONS(518), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:04:17 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(520), 15,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8966] = 2,
ACTIONS(522), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(524), 15,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[8996] = 2,
ACTIONS(526), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(528), 15,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9026] = 2,
ACTIONS(530), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(532), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9056] = 2,
ACTIONS(534), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(536), 15,
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9086] = 2,
ACTIONS(538), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(540), 15,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9116] = 2,
ACTIONS(542), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(544), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9146] = 2,
ACTIONS(546), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(548), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-29 23:31:06 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9176] = 2,
ACTIONS(550), 10,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_RBRACE,
anon_sym_asyncfor,
ACTIONS(552), 15,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-18 22:18:41 +00:00
anon_sym_true,
2023-10-29 23:31:06 +00:00
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[9206] = 2,
ACTIONS(556), 8,
2023-10-21 17:19:01 +00:00
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_asyncfor,
2023-10-29 23:31:06 +00:00
ACTIONS(554), 15,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-29 23:31:06 +00:00
[9234] = 4,
STATE(119), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(120), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(295), 3,
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(293), 16,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9264] = 7,
ACTIONS(291), 1,
anon_sym_DOT2,
STATE(119), 1,
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(120), 1,
sym_math_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:19:01 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(289), 5,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 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-29 23:31:06 +00:00
[9300] = 7,
ACTIONS(558), 1,
anon_sym_DOT2,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(301), 5,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9336] = 3,
ACTIONS(560), 1,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(313), 3,
anon_sym_DOT2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(311), 16,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-28 14:28:43 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9363] = 3,
ACTIONS(562), 1,
2023-10-28 14:28:43 +00:00
anon_sym_DOT,
2023-10-29 23:31:06 +00:00
ACTIONS(307), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(305), 16,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9390] = 2,
ACTIONS(323), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(321), 16,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9414] = 2,
ACTIONS(331), 3,
anon_sym_DOT2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(329), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
anon_sym_DOT_DOT,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:04:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9438] = 2,
ACTIONS(327), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(325), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9462] = 2,
ACTIONS(335), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(333), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9486] = 2,
ACTIONS(351), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(349), 16,
2023-10-28 14:28:43 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9510] = 5,
ACTIONS(233), 1,
anon_sym_EQ,
STATE(33), 1,
sym_assignment_operator,
ACTIONS(235), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(231), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
ACTIONS(229), 11,
anon_sym_RBRACE,
anon_sym_DOT2,
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-29 23:31:06 +00:00
[9540] = 2,
ACTIONS(355), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(353), 16,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9564] = 2,
ACTIONS(387), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(385), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9588] = 2,
ACTIONS(363), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(361), 16,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9612] = 2,
ACTIONS(339), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(337), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9636] = 2,
ACTIONS(347), 3,
anon_sym_DOT2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(345), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:19:01 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9660] = 2,
ACTIONS(391), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(389), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9684] = 2,
ACTIONS(343), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(341), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9708] = 2,
ACTIONS(375), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(373), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9732] = 2,
ACTIONS(379), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(377), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9756] = 2,
ACTIONS(359), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(357), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:19:01 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9780] = 2,
ACTIONS(383), 3,
anon_sym_DOT2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(381), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9804] = 2,
ACTIONS(371), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(369), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-19 01:50:45 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-19 01:50:45 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9828] = 2,
ACTIONS(367), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(365), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9852] = 2,
ACTIONS(319), 3,
anon_sym_DOT2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(317), 16,
anon_sym_RPAREN,
sym_identifier,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_DOT_DOT,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-21 17:04:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[9876] = 8,
ACTIONS(558), 1,
anon_sym_DOT2,
ACTIONS(564), 1,
anon_sym_RBRACE,
ACTIONS(566), 1,
anon_sym_DOT_DOT,
STATE(119), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 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-29 23:31:06 +00:00
[9911] = 8,
ACTIONS(279), 1,
anon_sym_RBRACE,
ACTIONS(283), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(568), 1,
anon_sym_DOT2,
STATE(119), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(120), 1,
2023-10-28 14:28:43 +00:00
sym_math_operator,
2023-10-29 23:31:06 +00:00
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 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-29 23:31:06 +00:00
[9946] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
STATE(119), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(570), 2,
sym_identifier,
anon_sym_RBRACE,
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 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-29 23:31:06 +00:00
[9979] = 8,
ACTIONS(263), 1,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(267), 1,
anon_sym_LBRACE,
ACTIONS(568), 1,
anon_sym_DOT2,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10014] = 8,
ACTIONS(558), 1,
anon_sym_DOT2,
ACTIONS(572), 1,
anon_sym_RBRACE,
ACTIONS(574), 1,
anon_sym_DOT_DOT,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10049] = 8,
ACTIONS(558), 1,
anon_sym_DOT2,
ACTIONS(576), 1,
anon_sym_RBRACE,
ACTIONS(578), 1,
anon_sym_DOT_DOT,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10084] = 7,
ACTIONS(297), 1,
anon_sym_RBRACE,
ACTIONS(568), 1,
anon_sym_DOT2,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10116] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(580), 1,
anon_sym_RBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10148] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(582), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10180] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(584), 1,
anon_sym_LBRACE,
STATE(119), 1,
2023-10-28 14:28:43 +00:00
sym_logic_operator,
2023-10-29 23:31:06 +00:00
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 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-29 23:31:06 +00:00
[10212] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(586), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10244] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(588), 1,
anon_sym_RBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10276] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(590), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10308] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(592), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10340] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(594), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10372] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(596), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10404] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(598), 1,
anon_sym_LBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10436] = 7,
ACTIONS(285), 1,
anon_sym_RBRACE,
ACTIONS(568), 1,
anon_sym_DOT2,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10468] = 7,
ACTIONS(568), 1,
anon_sym_DOT2,
ACTIONS(600), 1,
anon_sym_RBRACE,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
2023-10-28 14:28:43 +00:00
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
2023-10-28 14:28:43 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 6,
2023-10-28 14:28:43 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-29 23:31:06 +00:00
anon_sym_PIPE_PIPE,
2023-10-28 14:28:43 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10500] = 6,
ACTIONS(568), 1,
anon_sym_DOT2,
STATE(119), 1,
sym_logic_operator,
STATE(120), 1,
sym_math_operator,
ACTIONS(271), 2,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(273), 5,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-29 23:31:06 +00:00
ACTIONS(277), 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-29 23:31:06 +00:00
[10529] = 3,
ACTIONS(602), 1,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(375), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(373), 12,
anon_sym_DOT2,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10551] = 3,
ACTIONS(604), 1,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(375), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(373), 12,
anon_sym_DOT2,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10573] = 3,
ACTIONS(606), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
ACTIONS(375), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
ACTIONS(373), 12,
anon_sym_DOT2,
anon_sym_PLUS,
2023-10-29 23:31:06 +00:00
anon_sym_DASH2,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-29 23:31:06 +00:00
[10595] = 2,
ACTIONS(608), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(421), 8,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[10613] = 2,
ACTIONS(610), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(612), 6,
anon_sym_LPAREN,
2023-10-29 23:31:06 +00:00
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[10629] = 2,
ACTIONS(614), 5,
sym_identifier,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-29 23:31:06 +00:00
ACTIONS(616), 6,
anon_sym_LPAREN,
sym__numeric,
anon_sym_DASH,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
[10645] = 3,
ACTIONS(618), 1,
sym_identifier,
ACTIONS(620), 1,
anon_sym_RBRACE,
STATE(220), 1,
aux_sym_map_repeat1,
[10655] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(624), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10665] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(626), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(224), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10675] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(628), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(229), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10685] = 3,
ACTIONS(622), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(630), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(225), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10695] = 3,
ACTIONS(618), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(632), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
STATE(210), 1,
2023-10-21 17:19:01 +00:00
aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[10705] = 3,
ACTIONS(618), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(634), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
STATE(220), 1,
2023-10-28 14:28:43 +00:00
aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[10715] = 3,
ACTIONS(618), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(636), 1,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
STATE(216), 1,
aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[10725] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(638), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10735] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(640), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(218), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10745] = 3,
ACTIONS(642), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(645), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
STATE(220), 1,
2023-10-28 14:28:43 +00:00
aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[10755] = 3,
ACTIONS(622), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(647), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10765] = 3,
ACTIONS(622), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(649), 1,
2023-10-21 17:19:01 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
2023-10-21 17:19:01 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10775] = 3,
ACTIONS(651), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(654), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10785] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(656), 1,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10795] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(658), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10805] = 3,
ACTIONS(622), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(660), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(211), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10815] = 3,
ACTIONS(618), 1,
sym_identifier,
ACTIONS(662), 1,
anon_sym_RBRACE,
STATE(220), 1,
aux_sym_map_repeat1,
[10825] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(664), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10835] = 3,
ACTIONS(622), 1,
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(666), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
STATE(223), 1,
2023-10-21 17:04:17 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10845] = 3,
ACTIONS(618), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
ACTIONS(668), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
STATE(227), 1,
2023-10-28 14:28:43 +00:00
aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[10855] = 2,
ACTIONS(672), 1,
anon_sym_COMMA,
ACTIONS(670), 2,
2023-10-28 14:28:43 +00:00
sym_identifier,
anon_sym_GT,
2023-10-29 23:31:06 +00:00
[10863] = 2,
ACTIONS(622), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(228), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10870] = 1,
ACTIONS(654), 2,
sym_identifier,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-29 23:31:06 +00:00
[10875] = 2,
ACTIONS(622), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(222), 1,
2023-10-28 14:28:43 +00:00
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10882] = 2,
ACTIONS(622), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
STATE(221), 1,
aux_sym_function_repeat1,
2023-10-29 23:31:06 +00:00
[10889] = 2,
ACTIONS(674), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(676), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[10896] = 2,
ACTIONS(678), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(680), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[10903] = 2,
ACTIONS(682), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
ACTIONS(684), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[10910] = 1,
ACTIONS(686), 1,
2023-10-28 14:28:43 +00:00
anon_sym_in,
2023-10-29 23:31:06 +00:00
[10914] = 1,
ACTIONS(688), 1,
ts_builtin_sym_end,
[10918] = 1,
ACTIONS(690), 1,
sym__numeric,
[10922] = 1,
ACTIONS(692), 1,
anon_sym_LBRACE,
[10926] = 1,
ACTIONS(694), 1,
sym__numeric,
[10930] = 1,
ACTIONS(696), 1,
sym_identifier,
[10934] = 1,
ACTIONS(698), 1,
anon_sym_LBRACE,
[10938] = 1,
ACTIONS(700), 1,
sym_identifier,
[10942] = 1,
ACTIONS(702), 1,
sym__numeric,
[10946] = 1,
ACTIONS(704), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[10950] = 1,
ACTIONS(706), 1,
anon_sym_from,
[10954] = 1,
ACTIONS(708), 1,
anon_sym_from,
[10958] = 1,
ACTIONS(710), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[10962] = 1,
ACTIONS(712), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[10966] = 1,
ACTIONS(714), 1,
anon_sym_in,
2023-10-29 23:31:06 +00:00
[10970] = 1,
ACTIONS(716), 1,
sym__numeric,
[10974] = 1,
ACTIONS(718), 1,
anon_sym_RBRACE,
[10978] = 1,
ACTIONS(720), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[10982] = 1,
ACTIONS(722), 1,
2023-10-21 17:19:01 +00:00
anon_sym_in,
2023-10-29 23:31:06 +00:00
[10986] = 1,
ACTIONS(724), 1,
2023-10-28 14:28:43 +00:00
anon_sym_in,
2023-10-29 23:31:06 +00:00
[10990] = 1,
ACTIONS(726), 1,
anon_sym_in,
[10994] = 1,
ACTIONS(728), 1,
sym__numeric,
[10998] = 1,
ACTIONS(730), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11002] = 1,
ACTIONS(732), 1,
anon_sym_LBRACE,
[11006] = 1,
ACTIONS(734), 1,
2023-10-28 14:28:43 +00:00
anon_sym_from,
2023-10-29 23:31:06 +00:00
[11010] = 1,
ACTIONS(736), 1,
anon_sym_LBRACE,
[11014] = 1,
ACTIONS(738), 1,
sym__numeric,
[11018] = 1,
ACTIONS(740), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11022] = 1,
ACTIONS(742), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11026] = 1,
ACTIONS(744), 1,
2023-10-28 14:28:43 +00:00
anon_sym_EQ,
2023-10-29 23:31:06 +00:00
[11030] = 1,
ACTIONS(746), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11034] = 1,
ACTIONS(748), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11038] = 1,
ACTIONS(750), 1,
sym__numeric,
[11042] = 1,
ACTIONS(752), 1,
sym__numeric,
[11046] = 1,
ACTIONS(754), 1,
anon_sym_into,
[11050] = 1,
ACTIONS(756), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[11054] = 1,
ACTIONS(758), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11058] = 1,
ACTIONS(760), 1,
anon_sym_from,
[11062] = 1,
ACTIONS(762), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11066] = 1,
ACTIONS(764), 1,
anon_sym_into,
[11070] = 1,
ACTIONS(766), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[11074] = 1,
ACTIONS(768), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
[11078] = 1,
ACTIONS(770), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
[11082] = 1,
ACTIONS(772), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
[11086] = 1,
ACTIONS(774), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
[11090] = 1,
ACTIONS(776), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11094] = 1,
ACTIONS(778), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-29 23:31:06 +00:00
[11098] = 1,
ACTIONS(780), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[11102] = 1,
ACTIONS(782), 1,
sym__numeric,
[11106] = 1,
ACTIONS(784), 1,
anon_sym_RBRACE,
[11110] = 1,
ACTIONS(786), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11114] = 1,
ACTIONS(788), 1,
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[11118] = 1,
ACTIONS(790), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[11122] = 1,
ACTIONS(792), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[11126] = 1,
ACTIONS(794), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[11130] = 1,
ACTIONS(796), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[11134] = 1,
ACTIONS(798), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11138] = 1,
ACTIONS(800), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-29 23:31:06 +00:00
[11142] = 1,
ACTIONS(802), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[11146] = 1,
ACTIONS(804), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-29 23:31:06 +00:00
[11150] = 1,
ACTIONS(806), 1,
anon_sym_LBRACE,
[11154] = 1,
ACTIONS(808), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11158] = 1,
ACTIONS(810), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11162] = 1,
ACTIONS(812), 1,
2023-10-28 14:28:43 +00:00
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
[11166] = 1,
ACTIONS(814), 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-29 23:31:06 +00:00
[SMALL_STATE(3)] = 89,
[SMALL_STATE(4)] = 178,
[SMALL_STATE(5)] = 267,
[SMALL_STATE(6)] = 384,
[SMALL_STATE(7)] = 501,
[SMALL_STATE(8)] = 615,
[SMALL_STATE(9)] = 728,
[SMALL_STATE(10)] = 841,
[SMALL_STATE(11)] = 954,
[SMALL_STATE(12)] = 1067,
[SMALL_STATE(13)] = 1180,
[SMALL_STATE(14)] = 1293,
[SMALL_STATE(15)] = 1406,
[SMALL_STATE(16)] = 1519,
[SMALL_STATE(17)] = 1632,
[SMALL_STATE(18)] = 1745,
[SMALL_STATE(19)] = 1858,
[SMALL_STATE(20)] = 1971,
[SMALL_STATE(21)] = 2084,
[SMALL_STATE(22)] = 2197,
[SMALL_STATE(23)] = 2310,
[SMALL_STATE(24)] = 2423,
[SMALL_STATE(25)] = 2536,
[SMALL_STATE(26)] = 2649,
[SMALL_STATE(27)] = 2762,
[SMALL_STATE(28)] = 2833,
[SMALL_STATE(29)] = 2946,
[SMALL_STATE(30)] = 3055,
[SMALL_STATE(31)] = 3164,
[SMALL_STATE(32)] = 3273,
[SMALL_STATE(33)] = 3382,
[SMALL_STATE(34)] = 3491,
[SMALL_STATE(35)] = 3545,
[SMALL_STATE(36)] = 3622,
[SMALL_STATE(37)] = 3699,
[SMALL_STATE(38)] = 3776,
[SMALL_STATE(39)] = 3838,
[SMALL_STATE(40)] = 3900,
[SMALL_STATE(41)] = 3960,
[SMALL_STATE(42)] = 4018,
[SMALL_STATE(43)] = 4068,
[SMALL_STATE(44)] = 4128,
[SMALL_STATE(45)] = 4188,
[SMALL_STATE(46)] = 4235,
[SMALL_STATE(47)] = 4282,
[SMALL_STATE(48)] = 4326,
[SMALL_STATE(49)] = 4370,
[SMALL_STATE(50)] = 4414,
[SMALL_STATE(51)] = 4458,
[SMALL_STATE(52)] = 4502,
[SMALL_STATE(53)] = 4546,
[SMALL_STATE(54)] = 4590,
[SMALL_STATE(55)] = 4634,
[SMALL_STATE(56)] = 4678,
[SMALL_STATE(57)] = 4722,
[SMALL_STATE(58)] = 4766,
[SMALL_STATE(59)] = 4810,
[SMALL_STATE(60)] = 4854,
[SMALL_STATE(61)] = 4898,
[SMALL_STATE(62)] = 4942,
[SMALL_STATE(63)] = 4986,
[SMALL_STATE(64)] = 5030,
[SMALL_STATE(65)] = 5074,
[SMALL_STATE(66)] = 5118,
[SMALL_STATE(67)] = 5167,
[SMALL_STATE(68)] = 5210,
[SMALL_STATE(69)] = 5261,
[SMALL_STATE(70)] = 5300,
[SMALL_STATE(71)] = 5343,
[SMALL_STATE(72)] = 5390,
[SMALL_STATE(73)] = 5426,
[SMALL_STATE(74)] = 5486,
[SMALL_STATE(75)] = 5522,
[SMALL_STATE(76)] = 5560,
[SMALL_STATE(77)] = 5619,
[SMALL_STATE(78)] = 5652,
[SMALL_STATE(79)] = 5711,
[SMALL_STATE(80)] = 5770,
[SMALL_STATE(81)] = 5803,
2023-10-28 14:28:43 +00:00
[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,
2023-10-29 23:31:06 +00:00
[SMALL_STATE(90)] = 6152,
[SMALL_STATE(91)] = 6185,
[SMALL_STATE(92)] = 6218,
[SMALL_STATE(93)] = 6251,
[SMALL_STATE(94)] = 6310,
[SMALL_STATE(95)] = 6343,
[SMALL_STATE(96)] = 6376,
[SMALL_STATE(97)] = 6435,
[SMALL_STATE(98)] = 6468,
[SMALL_STATE(99)] = 6527,
[SMALL_STATE(100)] = 6586,
[SMALL_STATE(101)] = 6645,
[SMALL_STATE(102)] = 6704,
[SMALL_STATE(103)] = 6737,
[SMALL_STATE(104)] = 6770,
[SMALL_STATE(105)] = 6829,
[SMALL_STATE(106)] = 6888,
[SMALL_STATE(107)] = 6921,
[SMALL_STATE(108)] = 6980,
[SMALL_STATE(109)] = 7039,
[SMALL_STATE(110)] = 7072,
[SMALL_STATE(111)] = 7104,
[SMALL_STATE(112)] = 7136,
[SMALL_STATE(113)] = 7189,
[SMALL_STATE(114)] = 7242,
[SMALL_STATE(115)] = 7295,
[SMALL_STATE(116)] = 7348,
[SMALL_STATE(117)] = 7401,
[SMALL_STATE(118)] = 7454,
[SMALL_STATE(119)] = 7507,
[SMALL_STATE(120)] = 7560,
[SMALL_STATE(121)] = 7613,
[SMALL_STATE(122)] = 7666,
[SMALL_STATE(123)] = 7719,
[SMALL_STATE(124)] = 7772,
[SMALL_STATE(125)] = 7825,
[SMALL_STATE(126)] = 7878,
[SMALL_STATE(127)] = 7931,
[SMALL_STATE(128)] = 7984,
[SMALL_STATE(129)] = 8037,
[SMALL_STATE(130)] = 8090,
[SMALL_STATE(131)] = 8143,
[SMALL_STATE(132)] = 8196,
[SMALL_STATE(133)] = 8249,
[SMALL_STATE(134)] = 8302,
[SMALL_STATE(135)] = 8355,
[SMALL_STATE(136)] = 8408,
[SMALL_STATE(137)] = 8461,
[SMALL_STATE(138)] = 8514,
[SMALL_STATE(139)] = 8567,
[SMALL_STATE(140)] = 8620,
[SMALL_STATE(141)] = 8673,
[SMALL_STATE(142)] = 8726,
[SMALL_STATE(143)] = 8756,
[SMALL_STATE(144)] = 8786,
[SMALL_STATE(145)] = 8816,
[SMALL_STATE(146)] = 8846,
[SMALL_STATE(147)] = 8876,
[SMALL_STATE(148)] = 8906,
[SMALL_STATE(149)] = 8936,
[SMALL_STATE(150)] = 8966,
[SMALL_STATE(151)] = 8996,
[SMALL_STATE(152)] = 9026,
[SMALL_STATE(153)] = 9056,
[SMALL_STATE(154)] = 9086,
2023-10-28 14:28:43 +00:00
[SMALL_STATE(155)] = 9116,
2023-10-29 23:31:06 +00:00
[SMALL_STATE(156)] = 9146,
[SMALL_STATE(157)] = 9176,
[SMALL_STATE(158)] = 9206,
[SMALL_STATE(159)] = 9234,
[SMALL_STATE(160)] = 9264,
[SMALL_STATE(161)] = 9300,
[SMALL_STATE(162)] = 9336,
[SMALL_STATE(163)] = 9363,
[SMALL_STATE(164)] = 9390,
[SMALL_STATE(165)] = 9414,
[SMALL_STATE(166)] = 9438,
[SMALL_STATE(167)] = 9462,
[SMALL_STATE(168)] = 9486,
[SMALL_STATE(169)] = 9510,
[SMALL_STATE(170)] = 9540,
[SMALL_STATE(171)] = 9564,
[SMALL_STATE(172)] = 9588,
[SMALL_STATE(173)] = 9612,
[SMALL_STATE(174)] = 9636,
[SMALL_STATE(175)] = 9660,
[SMALL_STATE(176)] = 9684,
[SMALL_STATE(177)] = 9708,
[SMALL_STATE(178)] = 9732,
[SMALL_STATE(179)] = 9756,
[SMALL_STATE(180)] = 9780,
[SMALL_STATE(181)] = 9804,
[SMALL_STATE(182)] = 9828,
[SMALL_STATE(183)] = 9852,
[SMALL_STATE(184)] = 9876,
[SMALL_STATE(185)] = 9911,
[SMALL_STATE(186)] = 9946,
[SMALL_STATE(187)] = 9979,
[SMALL_STATE(188)] = 10014,
[SMALL_STATE(189)] = 10049,
[SMALL_STATE(190)] = 10084,
[SMALL_STATE(191)] = 10116,
[SMALL_STATE(192)] = 10148,
[SMALL_STATE(193)] = 10180,
[SMALL_STATE(194)] = 10212,
[SMALL_STATE(195)] = 10244,
[SMALL_STATE(196)] = 10276,
[SMALL_STATE(197)] = 10308,
[SMALL_STATE(198)] = 10340,
[SMALL_STATE(199)] = 10372,
[SMALL_STATE(200)] = 10404,
[SMALL_STATE(201)] = 10436,
[SMALL_STATE(202)] = 10468,
[SMALL_STATE(203)] = 10500,
[SMALL_STATE(204)] = 10529,
[SMALL_STATE(205)] = 10551,
[SMALL_STATE(206)] = 10573,
[SMALL_STATE(207)] = 10595,
[SMALL_STATE(208)] = 10613,
[SMALL_STATE(209)] = 10629,
[SMALL_STATE(210)] = 10645,
[SMALL_STATE(211)] = 10655,
[SMALL_STATE(212)] = 10665,
[SMALL_STATE(213)] = 10675,
[SMALL_STATE(214)] = 10685,
[SMALL_STATE(215)] = 10695,
[SMALL_STATE(216)] = 10705,
[SMALL_STATE(217)] = 10715,
[SMALL_STATE(218)] = 10725,
[SMALL_STATE(219)] = 10735,
[SMALL_STATE(220)] = 10745,
[SMALL_STATE(221)] = 10755,
[SMALL_STATE(222)] = 10765,
[SMALL_STATE(223)] = 10775,
[SMALL_STATE(224)] = 10785,
[SMALL_STATE(225)] = 10795,
[SMALL_STATE(226)] = 10805,
[SMALL_STATE(227)] = 10815,
[SMALL_STATE(228)] = 10825,
[SMALL_STATE(229)] = 10835,
[SMALL_STATE(230)] = 10845,
[SMALL_STATE(231)] = 10855,
[SMALL_STATE(232)] = 10863,
[SMALL_STATE(233)] = 10870,
[SMALL_STATE(234)] = 10875,
[SMALL_STATE(235)] = 10882,
[SMALL_STATE(236)] = 10889,
[SMALL_STATE(237)] = 10896,
[SMALL_STATE(238)] = 10903,
[SMALL_STATE(239)] = 10910,
[SMALL_STATE(240)] = 10914,
[SMALL_STATE(241)] = 10918,
[SMALL_STATE(242)] = 10922,
[SMALL_STATE(243)] = 10926,
[SMALL_STATE(244)] = 10930,
[SMALL_STATE(245)] = 10934,
[SMALL_STATE(246)] = 10938,
[SMALL_STATE(247)] = 10942,
[SMALL_STATE(248)] = 10946,
[SMALL_STATE(249)] = 10950,
[SMALL_STATE(250)] = 10954,
[SMALL_STATE(251)] = 10958,
[SMALL_STATE(252)] = 10962,
[SMALL_STATE(253)] = 10966,
[SMALL_STATE(254)] = 10970,
[SMALL_STATE(255)] = 10974,
[SMALL_STATE(256)] = 10978,
[SMALL_STATE(257)] = 10982,
[SMALL_STATE(258)] = 10986,
[SMALL_STATE(259)] = 10990,
[SMALL_STATE(260)] = 10994,
[SMALL_STATE(261)] = 10998,
[SMALL_STATE(262)] = 11002,
[SMALL_STATE(263)] = 11006,
[SMALL_STATE(264)] = 11010,
[SMALL_STATE(265)] = 11014,
[SMALL_STATE(266)] = 11018,
[SMALL_STATE(267)] = 11022,
[SMALL_STATE(268)] = 11026,
[SMALL_STATE(269)] = 11030,
[SMALL_STATE(270)] = 11034,
[SMALL_STATE(271)] = 11038,
[SMALL_STATE(272)] = 11042,
[SMALL_STATE(273)] = 11046,
[SMALL_STATE(274)] = 11050,
[SMALL_STATE(275)] = 11054,
[SMALL_STATE(276)] = 11058,
[SMALL_STATE(277)] = 11062,
[SMALL_STATE(278)] = 11066,
[SMALL_STATE(279)] = 11070,
[SMALL_STATE(280)] = 11074,
[SMALL_STATE(281)] = 11078,
[SMALL_STATE(282)] = 11082,
[SMALL_STATE(283)] = 11086,
[SMALL_STATE(284)] = 11090,
[SMALL_STATE(285)] = 11094,
[SMALL_STATE(286)] = 11098,
[SMALL_STATE(287)] = 11102,
[SMALL_STATE(288)] = 11106,
[SMALL_STATE(289)] = 11110,
[SMALL_STATE(290)] = 11114,
[SMALL_STATE(291)] = 11118,
[SMALL_STATE(292)] = 11122,
[SMALL_STATE(293)] = 11126,
[SMALL_STATE(294)] = 11130,
[SMALL_STATE(295)] = 11134,
[SMALL_STATE(296)] = 11138,
[SMALL_STATE(297)] = 11142,
[SMALL_STATE(298)] = 11146,
[SMALL_STATE(299)] = 11150,
[SMALL_STATE(300)] = 11154,
[SMALL_STATE(301)] = 11158,
[SMALL_STATE(302)] = 11162,
[SMALL_STATE(303)] = 11166,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-29 23:31:06 +00:00
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
2023-10-22 20:41:37 +00:00
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
2023-10-29 23:31:06 +00:00
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64),
[17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274),
[47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36),
[49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171),
[59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237),
[65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290),
[67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107),
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35),
[71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101),
[73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37),
[75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
2023-10-28 14:28:43 +00:00
[77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
2023-10-29 23:31:06 +00:00
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(34),
[82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(150),
2023-10-28 14:28:43 +00:00
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(3),
2023-10-29 23:31:06 +00:00
[88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(45),
[91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(287),
[94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(56),
[97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(64),
[100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(89),
[103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(215),
[106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(236),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(286),
[112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(137),
[115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(136),
[118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(285),
[121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(285),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(283),
[127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(282),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(281),
[133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(280),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(279),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(278),
[142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(274),
[145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
[149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(34),
[152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(150),
[155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(3),
[158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(45),
[161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(287),
[164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(56),
[167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(64),
[170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(89),
[173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(215),
[176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(236),
[179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(286),
[182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(137),
[185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(136),
[188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(285),
[191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(285),
[194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(283),
[197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(282),
[200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(281),
[203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(280),
[206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(279),
[209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(278),
[212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(274),
[215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
[223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169),
[225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291),
[227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273),
[229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158),
[235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
[239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88),
[251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
[257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296),
[259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208),
[273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
[277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1),
[309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 2),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 2),
[315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 3),
[319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 3),
[321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 4),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 4),
[337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 4),
[339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 4),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 7),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 7),
[353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 3),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 3),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242),
[403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(106),
[418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(2),
[421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(74),
[426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(254),
[429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103),
[432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(88),
[435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(105),
[438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(230),
[441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(238),
[444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(296),
[447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(125),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
[498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 9),
[544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 9),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8),
[552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8),
[554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247),
[562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(268),
[645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(231),
[654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[688] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246),
[766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
};
#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