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

10372 lines
240 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
#define STATE_COUNT 262
2023-10-21 20:38:20 +00:00
#define LARGE_STATE_COUNT 2
2023-10-22 18:48:34 +00:00
#define SYMBOL_COUNT 112
#define ALIAS_COUNT 0
2023-10-22 18:48:34 +00:00
#define TOKEN_COUNT 72
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
2023-10-21 17:04:17 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 9
#define PRODUCTION_ID_COUNT 1
enum {
sym_identifier = 1,
aux_sym_comment_token1 = 2,
anon_sym_LPAREN = 3,
anon_sym_RPAREN = 4,
sym_integer = 5,
sym_float = 6,
sym_string = 7,
anon_sym_true = 8,
anon_sym_false = 9,
anon_sym_LBRACK = 10,
anon_sym_COMMA = 11,
anon_sym_RBRACK = 12,
anon_sym_function = 13,
anon_sym_LT = 14,
anon_sym_GT = 15,
anon_sym_LBRACE = 16,
anon_sym_RBRACE = 17,
anon_sym_table = 18,
anon_sym_EQ = 19,
anon_sym_PLUS = 20,
anon_sym_DASH = 21,
anon_sym_STAR = 22,
anon_sym_SLASH = 23,
anon_sym_PERCENT = 24,
anon_sym_EQ_EQ = 25,
anon_sym_BANG_EQ = 26,
anon_sym_AMP_AMP = 27,
anon_sym_PIPE_PIPE = 28,
anon_sym_GT_EQ = 29,
anon_sym_LT_EQ = 30,
anon_sym_PLUS_EQ = 31,
anon_sym_DASH_EQ = 32,
anon_sym_if = 33,
anon_sym_elseif = 34,
anon_sym_else = 35,
anon_sym_while = 36,
anon_sym_for = 37,
anon_sym_in = 38,
anon_sym_transform = 39,
anon_sym_filter = 40,
2023-10-18 22:18:41 +00:00
anon_sym_find = 41,
2023-10-19 01:50:45 +00:00
anon_sym_remove = 42,
2023-10-21 17:04:17 +00:00
anon_sym_select = 43,
anon_sym_from = 44,
anon_sym_insert = 45,
anon_sym_into = 46,
anon_sym_async = 47,
anon_sym_assert = 48,
anon_sym_assert_equal = 49,
anon_sym_help = 50,
anon_sym_length = 51,
anon_sym_output = 52,
anon_sym_output_error = 53,
2023-10-22 18:27:18 +00:00
anon_sym_type = 54,
anon_sym_append = 55,
anon_sym_metadata = 56,
anon_sym_move = 57,
anon_sym_read = 58,
anon_sym_write = 59,
anon_sym_from_json = 60,
anon_sym_to_json = 61,
anon_sym_to_string = 62,
anon_sym_bash = 63,
anon_sym_fish = 64,
anon_sym_raw = 65,
anon_sym_sh = 66,
anon_sym_zsh = 67,
2023-10-22 18:48:34 +00:00
anon_sym_random = 68,
anon_sym_random_boolean = 69,
anon_sym_random_float = 70,
anon_sym_random_integer = 71,
sym_root = 72,
sym_item = 73,
sym_statement = 74,
sym_comment = 75,
sym_expression = 76,
sym__expression_kind = 77,
sym_value = 78,
sym_boolean = 79,
sym_list = 80,
sym_function = 81,
sym_table = 82,
sym_map = 83,
sym_math = 84,
sym_math_operator = 85,
sym_logic = 86,
sym_logic_operator = 87,
sym_assignment = 88,
sym_assignment_operator = 89,
sym_if_else = 90,
sym_if = 91,
sym_else_if = 92,
sym_else = 93,
sym_function_call = 94,
sym_while = 95,
sym_for = 96,
sym_transform = 97,
sym_filter = 98,
sym_find = 99,
sym_remove = 100,
sym_select = 101,
sym_insert = 102,
sym_async = 103,
sym_tool = 104,
sym__tool_kind = 105,
aux_sym_root_repeat1 = 106,
aux_sym_item_repeat1 = 107,
aux_sym_list_repeat1 = 108,
aux_sym_function_repeat1 = 109,
aux_sym_map_repeat1 = 110,
aux_sym_if_else_repeat1 = 111,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[aux_sym_comment_token1] = "comment_token1",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_table] = "table",
[anon_sym_EQ] = "=",
[anon_sym_PLUS] = "+",
[anon_sym_DASH] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_EQ] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[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-21 20:38:20 +00:00
[anon_sym_help] = "help",
2023-10-21 17:19:01 +00:00
[anon_sym_length] = "length",
2023-10-21 20:38:20 +00:00
[anon_sym_output] = "output",
[anon_sym_output_error] = "output_error",
2023-10-22 18:27:18 +00:00
[anon_sym_type] = "type",
2023-10-21 20:38:20 +00:00
[anon_sym_append] = "append",
[anon_sym_metadata] = "metadata",
[anon_sym_move] = "move",
2023-10-21 17:19:01 +00:00
[anon_sym_read] = "read",
[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",
[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",
[sym_root] = "root",
[sym_item] = "item",
[sym_statement] = "statement",
[sym_comment] = "comment",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_function] = "function",
[sym_table] = "table",
[sym_map] = "map",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_function_call] = "function_call",
[sym_while] = "while",
[sym_for] = "for",
[sym_transform] = "transform",
[sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[sym_find] = "find",
2023-10-19 01:50:45 +00:00
[sym_remove] = "remove",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_async] = "async",
2023-10-21 17:19:01 +00:00
[sym_tool] = "tool",
[sym__tool_kind] = "_tool_kind",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_item_repeat1] = "item_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[aux_sym_comment_token1] = aux_sym_comment_token1,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_table] = anon_sym_table,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_if] = anon_sym_if,
[anon_sym_elseif] = anon_sym_elseif,
[anon_sym_else] = anon_sym_else,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[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-21 20:38:20 +00:00
[anon_sym_help] = anon_sym_help,
2023-10-21 17:19:01 +00:00
[anon_sym_length] = anon_sym_length,
2023-10-21 20:38:20 +00:00
[anon_sym_output] = anon_sym_output,
[anon_sym_output_error] = anon_sym_output_error,
2023-10-22 18:27:18 +00:00
[anon_sym_type] = anon_sym_type,
2023-10-21 20:38:20 +00:00
[anon_sym_append] = anon_sym_append,
[anon_sym_metadata] = anon_sym_metadata,
[anon_sym_move] = anon_sym_move,
2023-10-21 17:19:01 +00:00
[anon_sym_read] = anon_sym_read,
[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,
[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,
[sym_root] = sym_root,
[sym_item] = sym_item,
[sym_statement] = sym_statement,
[sym_comment] = sym_comment,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_function] = sym_function,
[sym_table] = sym_table,
[sym_map] = sym_map,
[sym_math] = sym_math,
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_function_call] = sym_function_call,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_transform] = sym_transform,
[sym_filter] = sym_filter,
2023-10-18 22:18:41 +00:00
[sym_find] = sym_find,
2023-10-19 01:50:45 +00:00
[sym_remove] = sym_remove,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_async] = sym_async,
2023-10-21 17:19:01 +00:00
[sym_tool] = sym_tool,
[sym__tool_kind] = sym__tool_kind,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_item_repeat1] = aux_sym_item_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[aux_sym_comment_token1] = {
.visible = false,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_function] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_elseif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[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,
},
[anon_sym_help] = {
.visible = true,
.named = false,
},
[anon_sym_length] = {
.visible = true,
.named = false,
},
2023-10-21 17:19:01 +00:00
[anon_sym_output] = {
.visible = true,
.named = false,
},
[anon_sym_output_error] = {
.visible = true,
.named = false,
},
2023-10-22 18:27:18 +00:00
[anon_sym_type] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_append] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_metadata] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_move] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = false,
},
[anon_sym_read] = {
.visible = true,
.named = false,
},
[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,
},
[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,
},
[sym_root] = {
.visible = true,
.named = true,
},
[sym_item] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[sym_value] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
2023-10-18 22:18:41 +00:00
[sym_find] = {
.visible = true,
.named = true,
},
2023-10-19 01:50:45 +00:00
[sym_remove] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_async] = {
.visible = true,
.named = true,
},
2023-10-21 17:19:01 +00:00
[sym_tool] = {
.visible = true,
.named = true,
},
[sym__tool_kind] = {
.visible = false,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_item_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
2023-10-18 22:18:41 +00:00
[5] = 5,
[6] = 6,
[7] = 7,
2023-10-21 20:38:20 +00:00
[8] = 8,
[9] = 5,
[10] = 6,
2023-10-22 18:48:34 +00:00
[11] = 11,
2023-10-21 20:38:20 +00:00
[12] = 8,
[13] = 5,
2023-10-22 18:48:34 +00:00
[14] = 11,
2023-10-21 20:38:20 +00:00
[15] = 15,
2023-10-22 18:48:34 +00:00
[16] = 8,
2023-10-21 17:04:17 +00:00
[17] = 17,
[18] = 18,
[19] = 19,
2023-10-22 18:48:34 +00:00
[20] = 11,
2023-10-21 17:19:01 +00:00
[21] = 21,
[22] = 22,
[23] = 23,
2023-10-22 18:48:34 +00:00
[24] = 24,
2023-10-18 23:26:49 +00:00
[25] = 25,
[26] = 26,
2023-10-22 18:48:34 +00:00
[27] = 26,
[28] = 26,
2023-10-21 17:04:17 +00:00
[29] = 29,
2023-10-22 18:48:34 +00:00
[30] = 30,
2023-10-21 17:04:17 +00:00
[31] = 31,
2023-10-22 18:48:34 +00:00
[32] = 29,
[33] = 33,
[34] = 34,
[35] = 35,
[36] = 36,
[37] = 37,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
[48] = 48,
[49] = 49,
2023-10-18 22:18:41 +00:00
[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,
[58] = 57,
[59] = 57,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
2023-10-18 22:18:41 +00:00
[64] = 64,
[65] = 65,
[66] = 66,
2023-10-19 01:50:45 +00:00
[67] = 67,
[68] = 68,
[69] = 67,
2023-10-19 01:50:45 +00:00
[70] = 70,
[71] = 68,
[72] = 72,
2023-10-21 17:04:17 +00:00
[73] = 73,
[74] = 67,
[75] = 70,
[76] = 70,
2023-10-21 20:38:20 +00:00
[77] = 73,
[78] = 68,
[79] = 73,
[80] = 72,
[81] = 72,
[82] = 82,
2023-10-21 17:19:01 +00:00
[83] = 83,
2023-10-21 17:04:17 +00:00
[84] = 84,
2023-10-21 17:19:01 +00:00
[85] = 85,
2023-10-21 17:04:17 +00:00
[86] = 86,
2023-10-21 17:19:01 +00:00
[87] = 87,
2023-10-21 17:04:17 +00:00
[88] = 88,
[89] = 89,
[90] = 90,
[91] = 91,
[92] = 92,
[93] = 93,
2023-10-21 17:19:01 +00:00
[94] = 94,
2023-10-21 17:04:17 +00:00
[95] = 95,
2023-10-19 01:50:45 +00:00
[96] = 96,
[97] = 97,
[98] = 98,
2023-10-18 22:18:41 +00:00
[99] = 99,
2023-10-19 01:50:45 +00:00
[100] = 100,
[101] = 101,
[102] = 102,
2023-10-21 17:04:17 +00:00
[103] = 103,
[104] = 104,
2023-10-21 17:19:01 +00:00
[105] = 105,
2023-10-21 17:04:17 +00:00
[106] = 106,
[107] = 100,
2023-10-21 17:19:01 +00:00
[108] = 108,
[109] = 102,
[110] = 110,
2023-10-21 17:19:01 +00:00
[111] = 111,
[112] = 111,
[113] = 110,
[114] = 114,
[115] = 115,
[116] = 102,
[117] = 115,
[118] = 106,
[119] = 119,
[120] = 110,
[121] = 111,
[122] = 122,
2023-10-22 18:48:34 +00:00
[123] = 35,
[124] = 37,
[125] = 36,
2023-10-22 18:48:34 +00:00
[126] = 34,
[127] = 54,
[128] = 36,
2023-10-22 18:48:34 +00:00
[129] = 34,
[130] = 53,
2023-10-22 18:48:34 +00:00
[131] = 35,
[132] = 132,
[133] = 56,
[134] = 44,
[135] = 135,
[136] = 136,
2023-10-19 01:50:45 +00:00
[137] = 137,
[138] = 55,
[139] = 139,
2023-10-22 18:48:34 +00:00
[140] = 50,
[141] = 51,
2023-10-22 18:48:34 +00:00
[142] = 52,
[143] = 39,
[144] = 48,
[145] = 49,
[146] = 45,
2023-10-22 18:48:34 +00:00
[147] = 43,
[148] = 148,
[149] = 42,
2023-10-21 17:19:01 +00:00
[150] = 150,
2023-10-22 18:48:34 +00:00
[151] = 38,
[152] = 47,
2023-10-22 18:48:34 +00:00
[153] = 41,
[154] = 154,
[155] = 155,
2023-10-22 18:48:34 +00:00
[156] = 46,
[157] = 40,
[158] = 52,
[159] = 51,
[160] = 42,
2023-10-22 18:48:34 +00:00
[161] = 38,
[162] = 50,
[163] = 45,
[164] = 49,
[165] = 47,
[166] = 48,
2023-10-22 18:48:34 +00:00
[167] = 43,
[168] = 44,
[169] = 169,
2023-10-22 18:48:34 +00:00
[170] = 39,
[171] = 41,
[172] = 40,
[173] = 46,
[174] = 174,
[175] = 174,
[176] = 174,
[177] = 177,
[178] = 178,
2023-10-18 23:26:49 +00:00
[179] = 179,
2023-10-21 17:19:01 +00:00
[180] = 180,
2023-10-21 17:04:17 +00:00
[181] = 181,
[182] = 181,
2023-10-21 17:19:01 +00:00
[183] = 183,
[184] = 184,
2023-10-21 17:04:17 +00:00
[185] = 185,
2023-10-21 17:19:01 +00:00
[186] = 186,
[187] = 187,
[188] = 188,
[189] = 183,
[190] = 187,
[191] = 181,
[192] = 183,
[193] = 193,
[194] = 187,
[195] = 186,
[196] = 193,
[197] = 186,
[198] = 193,
[199] = 185,
2023-10-18 23:26:49 +00:00
[200] = 200,
[201] = 200,
2023-10-21 17:19:01 +00:00
[202] = 202,
[203] = 202,
[204] = 202,
[205] = 205,
[206] = 205,
[207] = 205,
2023-10-19 01:50:45 +00:00
[208] = 208,
[209] = 209,
2023-10-19 01:50:45 +00:00
[210] = 210,
[211] = 211,
[212] = 212,
[213] = 213,
[214] = 214,
2023-10-21 17:19:01 +00:00
[215] = 214,
[216] = 216,
2023-10-21 17:04:17 +00:00
[217] = 217,
[218] = 218,
[219] = 219,
[220] = 220,
2023-10-18 22:18:41 +00:00
[221] = 221,
[222] = 211,
2023-10-21 17:19:01 +00:00
[223] = 223,
[224] = 220,
2023-10-21 17:19:01 +00:00
[225] = 225,
[226] = 226,
[227] = 227,
[228] = 221,
2023-10-19 01:50:45 +00:00
[229] = 229,
[230] = 230,
2023-10-21 17:04:17 +00:00
[231] = 231,
[232] = 218,
2023-10-21 17:19:01 +00:00
[233] = 233,
[234] = 221,
[235] = 211,
2023-10-21 17:04:17 +00:00
[236] = 236,
[237] = 237,
2023-10-21 17:04:17 +00:00
[238] = 238,
[239] = 239,
[240] = 219,
[241] = 237,
2023-10-21 17:19:01 +00:00
[242] = 242,
[243] = 243,
[244] = 244,
[245] = 245,
2023-10-19 01:50:45 +00:00
[246] = 246,
2023-10-21 17:19:01 +00:00
[247] = 247,
[248] = 248,
[249] = 249,
[250] = 244,
[251] = 242,
[252] = 245,
[253] = 253,
[254] = 254,
[255] = 244,
[256] = 245,
[257] = 253,
[258] = 218,
[259] = 259,
[260] = 260,
[261] = 253,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(16);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(43);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(23);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(6);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(6);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(39);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(7);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 3:
if (lookahead == '"') ADVANCE(29);
if (lookahead != 0) ADVANCE(3);
END_STATE();
case 4:
if (lookahead == '&') ADVANCE(49);
END_STATE();
case 5:
if (lookahead == '\'') ADVANCE(29);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '=') ADVANCE(48);
END_STATE();
case 7:
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 8:
if (lookahead == '`') ADVANCE(29);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == 'f') ADVANCE(56);
END_STATE();
case 10:
if (lookahead == 'i') ADVANCE(9);
END_STATE();
case 11:
if (lookahead == '|') ADVANCE(50);
END_STATE();
case 12:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 13:
if (eof) ADVANCE(16);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(43);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(13)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 14:
if (eof) ADVANCE(16);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '>') ADVANCE(34);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(14)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(26);
END_STATE();
case 15:
if (eof) ADVANCE(16);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '[') ADVANCE(30);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(23);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(15)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(26);
END_STATE();
case 16:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 17:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '#') ADVANCE(17);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(18);
END_STATE();
case 18:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(18);
END_STATE();
case 19:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 20:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 21:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 22:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(57);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 23:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(24);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 24:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(22);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 25:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '|') ADVANCE(51);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 26:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 27:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(28);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 28:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
END_STATE();
case 29:
ACCEPT_TOKEN(sym_string);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(53);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(52);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(54);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(55);
END_STATE();
case 43:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(55);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 44:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 46:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 47:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 50:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_else);
if (lookahead == ' ') ADVANCE(10);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
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);
if (lookahead == 'f') ADVANCE(3);
if (lookahead == 'h') ADVANCE(4);
if (lookahead == 'i') ADVANCE(5);
if (lookahead == 'l') ADVANCE(6);
if (lookahead == 'm') ADVANCE(7);
if (lookahead == 'o') ADVANCE(8);
if (lookahead == 'r') ADVANCE(9);
if (lookahead == 's') ADVANCE(10);
if (lookahead == 't') ADVANCE(11);
if (lookahead == 'w') ADVANCE(12);
if (lookahead == 'z') ADVANCE(13);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-10-21 20:38:20 +00:00
if (lookahead == 'p') ADVANCE(14);
if (lookahead == 's') ADVANCE(15);
END_STATE();
case 2:
2023-10-21 20:38:20 +00:00
if (lookahead == 'a') ADVANCE(16);
END_STATE();
case 3:
2023-10-21 20:38:20 +00:00
if (lookahead == 'a') ADVANCE(17);
if (lookahead == 'i') ADVANCE(18);
if (lookahead == 'o') ADVANCE(19);
if (lookahead == 'r') ADVANCE(20);
if (lookahead == 'u') ADVANCE(21);
END_STATE();
case 4:
2023-10-21 20:38:20 +00:00
if (lookahead == 'e') ADVANCE(22);
END_STATE();
case 5:
2023-10-21 20:38:20 +00:00
if (lookahead == 'f') ADVANCE(23);
if (lookahead == 'n') ADVANCE(24);
END_STATE();
case 6:
2023-10-21 20:38:20 +00:00
if (lookahead == 'e') ADVANCE(25);
END_STATE();
case 7:
2023-10-21 20:38:20 +00:00
if (lookahead == 'e') ADVANCE(26);
if (lookahead == 'o') ADVANCE(27);
END_STATE();
case 8:
2023-10-21 20:38:20 +00:00
if (lookahead == 'u') ADVANCE(28);
END_STATE();
case 9:
2023-10-21 20:38:20 +00:00
if (lookahead == 'a') ADVANCE(29);
if (lookahead == 'e') ADVANCE(30);
END_STATE();
case 10:
2023-10-21 20:38:20 +00:00
if (lookahead == 'e') ADVANCE(31);
if (lookahead == 'h') ADVANCE(32);
END_STATE();
case 11:
2023-10-21 20:38:20 +00:00
if (lookahead == 'a') ADVANCE(33);
if (lookahead == 'o') ADVANCE(34);
if (lookahead == 'r') ADVANCE(35);
2023-10-22 18:27:18 +00:00
if (lookahead == 'y') ADVANCE(36);
END_STATE();
case 12:
2023-10-22 18:27:18 +00:00
if (lookahead == 'h') ADVANCE(37);
if (lookahead == 'r') ADVANCE(38);
END_STATE();
case 13:
2023-10-22 18:27:18 +00:00
if (lookahead == 's') ADVANCE(39);
END_STATE();
case 14:
2023-10-22 18:27:18 +00:00
if (lookahead == 'p') ADVANCE(40);
END_STATE();
case 15:
2023-10-22 18:27:18 +00:00
if (lookahead == 's') ADVANCE(41);
if (lookahead == 'y') ADVANCE(42);
END_STATE();
case 16:
2023-10-22 18:27:18 +00:00
if (lookahead == 's') ADVANCE(43);
END_STATE();
case 17:
2023-10-22 18:27:18 +00:00
if (lookahead == 'l') ADVANCE(44);
END_STATE();
case 18:
2023-10-22 18:27:18 +00:00
if (lookahead == 'l') ADVANCE(45);
if (lookahead == 'n') ADVANCE(46);
if (lookahead == 's') ADVANCE(47);
END_STATE();
case 19:
2023-10-22 18:27:18 +00:00
if (lookahead == 'r') ADVANCE(48);
END_STATE();
case 20:
2023-10-22 18:27:18 +00:00
if (lookahead == 'o') ADVANCE(49);
END_STATE();
case 21:
2023-10-22 18:27:18 +00:00
if (lookahead == 'n') ADVANCE(50);
END_STATE();
case 22:
2023-10-22 18:27:18 +00:00
if (lookahead == 'l') ADVANCE(51);
END_STATE();
case 23:
2023-10-21 20:38:20 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 24:
2023-10-21 20:38:20 +00:00
ACCEPT_TOKEN(anon_sym_in);
2023-10-22 18:27:18 +00:00
if (lookahead == 's') ADVANCE(52);
if (lookahead == 't') ADVANCE(53);
END_STATE();
case 25:
2023-10-22 18:27:18 +00:00
if (lookahead == 'n') ADVANCE(54);
END_STATE();
case 26:
2023-10-22 18:27:18 +00:00
if (lookahead == 't') ADVANCE(55);
END_STATE();
case 27:
2023-10-22 18:27:18 +00:00
if (lookahead == 'v') ADVANCE(56);
END_STATE();
case 28:
2023-10-22 18:27:18 +00:00
if (lookahead == 't') ADVANCE(57);
END_STATE();
case 29:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(58);
if (lookahead == 'w') ADVANCE(59);
END_STATE();
case 30:
2023-10-22 18:48:34 +00:00
if (lookahead == 'a') ADVANCE(60);
if (lookahead == 'm') ADVANCE(61);
END_STATE();
case 31:
2023-10-22 18:48:34 +00:00
if (lookahead == 'l') ADVANCE(62);
END_STATE();
case 32:
2023-10-21 20:38:20 +00:00
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 33:
2023-10-22 18:48:34 +00:00
if (lookahead == 'b') ADVANCE(63);
END_STATE();
case 34:
2023-10-22 18:48:34 +00:00
if (lookahead == '_') ADVANCE(64);
END_STATE();
case 35:
2023-10-22 18:48:34 +00:00
if (lookahead == 'a') ADVANCE(65);
if (lookahead == 'u') ADVANCE(66);
END_STATE();
case 36:
2023-10-22 18:48:34 +00:00
if (lookahead == 'p') ADVANCE(67);
END_STATE();
case 37:
2023-10-22 18:48:34 +00:00
if (lookahead == 'i') ADVANCE(68);
END_STATE();
case 38:
2023-10-22 18:48:34 +00:00
if (lookahead == 'i') ADVANCE(69);
END_STATE();
case 39:
2023-10-22 18:48:34 +00:00
if (lookahead == 'h') ADVANCE(70);
END_STATE();
case 40:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(71);
END_STATE();
case 41:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(72);
END_STATE();
case 42:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(73);
END_STATE();
case 43:
2023-10-22 18:48:34 +00:00
if (lookahead == 'h') ADVANCE(74);
END_STATE();
case 44:
2023-10-22 18:48:34 +00:00
if (lookahead == 's') ADVANCE(75);
END_STATE();
case 45:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(76);
END_STATE();
case 46:
2023-10-22 18:48:34 +00:00
if (lookahead == 'd') ADVANCE(77);
END_STATE();
case 47:
2023-10-22 18:48:34 +00:00
if (lookahead == 'h') ADVANCE(78);
END_STATE();
case 48:
2023-10-22 18:27:18 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 49:
2023-10-22 18:48:34 +00:00
if (lookahead == 'm') ADVANCE(79);
END_STATE();
case 50:
2023-10-22 18:48:34 +00:00
if (lookahead == 'c') ADVANCE(80);
END_STATE();
case 51:
2023-10-22 18:48:34 +00:00
if (lookahead == 'p') ADVANCE(81);
END_STATE();
case 52:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(82);
END_STATE();
case 53:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(83);
END_STATE();
case 54:
2023-10-22 18:48:34 +00:00
if (lookahead == 'g') ADVANCE(84);
END_STATE();
case 55:
2023-10-22 18:48:34 +00:00
if (lookahead == 'a') ADVANCE(85);
END_STATE();
case 56:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(86);
END_STATE();
case 57:
2023-10-22 18:48:34 +00:00
if (lookahead == 'p') ADVANCE(87);
END_STATE();
case 58:
2023-10-22 18:48:34 +00:00
if (lookahead == 'd') ADVANCE(88);
END_STATE();
case 59:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 60:
2023-10-22 18:48:34 +00:00
if (lookahead == 'd') ADVANCE(89);
END_STATE();
case 61:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(90);
END_STATE();
case 62:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(91);
END_STATE();
case 63:
2023-10-22 18:48:34 +00:00
if (lookahead == 'l') ADVANCE(92);
END_STATE();
case 64:
2023-10-22 18:48:34 +00:00
if (lookahead == 'j') ADVANCE(93);
if (lookahead == 's') ADVANCE(94);
END_STATE();
case 65:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(95);
END_STATE();
case 66:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(96);
END_STATE();
case 67:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(97);
END_STATE();
case 68:
2023-10-22 18:48:34 +00:00
if (lookahead == 'l') ADVANCE(98);
END_STATE();
case 69:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(99);
END_STATE();
case 70:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
END_STATE();
case 71:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(100);
END_STATE();
case 72:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(101);
END_STATE();
case 73:
2023-10-22 18:48:34 +00:00
if (lookahead == 'c') ADVANCE(102);
END_STATE();
case 74:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_bash);
END_STATE();
case 75:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(103);
END_STATE();
case 76:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(104);
END_STATE();
case 77:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_find);
2023-10-21 17:19:01 +00:00
END_STATE();
case 78:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_fish);
2023-10-21 17:19:01 +00:00
END_STATE();
case 79:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(105);
2023-10-21 17:19:01 +00:00
END_STATE();
case 80:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(106);
2023-10-21 17:19:01 +00:00
END_STATE();
case 81:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_help);
2023-10-21 17:19:01 +00:00
END_STATE();
case 82:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(107);
2023-10-21 17:19:01 +00:00
END_STATE();
case 83:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_into);
2023-10-21 17:19:01 +00:00
END_STATE();
case 84:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(108);
2023-10-21 17:19:01 +00:00
END_STATE();
case 85:
2023-10-22 18:48:34 +00:00
if (lookahead == 'd') ADVANCE(109);
2023-10-21 17:19:01 +00:00
END_STATE();
case 86:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_move);
2023-10-21 17:19:01 +00:00
END_STATE();
case 87:
2023-10-22 18:48:34 +00:00
if (lookahead == 'u') ADVANCE(110);
2023-10-21 17:19:01 +00:00
END_STATE();
case 88:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(111);
2023-10-21 17:19:01 +00:00
END_STATE();
case 89:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_read);
2023-10-21 17:19:01 +00:00
END_STATE();
case 90:
2023-10-22 18:48:34 +00:00
if (lookahead == 'v') ADVANCE(112);
2023-10-21 17:19:01 +00:00
END_STATE();
case 91:
2023-10-22 18:48:34 +00:00
if (lookahead == 'c') ADVANCE(113);
2023-10-21 17:19:01 +00:00
END_STATE();
case 92:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(114);
2023-10-21 17:19:01 +00:00
END_STATE();
case 93:
2023-10-22 18:48:34 +00:00
if (lookahead == 's') ADVANCE(115);
2023-10-21 17:19:01 +00:00
END_STATE();
case 94:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(116);
2023-10-21 17:19:01 +00:00
END_STATE();
case 95:
2023-10-22 18:48:34 +00:00
if (lookahead == 's') ADVANCE(117);
2023-10-21 17:19:01 +00:00
END_STATE();
case 96:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_true);
2023-10-21 17:19:01 +00:00
END_STATE();
case 97:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_type);
2023-10-21 17:19:01 +00:00
END_STATE();
case 98:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(118);
2023-10-21 17:19:01 +00:00
END_STATE();
case 99:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(119);
2023-10-21 17:19:01 +00:00
END_STATE();
case 100:
2023-10-22 18:48:34 +00:00
if (lookahead == 'd') ADVANCE(120);
2023-10-21 17:19:01 +00:00
END_STATE();
case 101:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(121);
END_STATE();
2023-10-21 17:19:01 +00:00
case 102:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_async);
2023-10-21 17:19:01 +00:00
END_STATE();
case 103:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_false);
2023-10-21 17:19:01 +00:00
END_STATE();
case 104:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(122);
2023-10-21 17:19:01 +00:00
END_STATE();
case 105:
2023-10-22 18:48:34 +00:00
if (lookahead == 'j') ADVANCE(123);
2023-10-21 17:19:01 +00:00
END_STATE();
case 106:
2023-10-22 18:48:34 +00:00
if (lookahead == 'i') ADVANCE(124);
2023-10-21 17:19:01 +00:00
END_STATE();
case 107:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(125);
2023-10-21 20:38:20 +00:00
END_STATE();
case 108:
2023-10-22 18:48:34 +00:00
if (lookahead == 'h') ADVANCE(126);
2023-10-21 20:38:20 +00:00
END_STATE();
case 109:
2023-10-22 18:48:34 +00:00
if (lookahead == 'a') ADVANCE(127);
2023-10-21 20:38:20 +00:00
END_STATE();
case 110:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(128);
2023-10-21 20:38:20 +00:00
END_STATE();
case 111:
2023-10-22 18:48:34 +00:00
if (lookahead == 'm') ADVANCE(129);
2023-10-21 20:38:20 +00:00
END_STATE();
case 112:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(130);
2023-10-21 20:38:20 +00:00
END_STATE();
case 113:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(131);
2023-10-21 20:38:20 +00:00
END_STATE();
case 114:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_table);
2023-10-21 20:38:20 +00:00
END_STATE();
case 115:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(132);
2023-10-21 20:38:20 +00:00
END_STATE();
case 116:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(133);
2023-10-21 20:38:20 +00:00
END_STATE();
case 117:
2023-10-22 18:48:34 +00:00
if (lookahead == 'f') ADVANCE(134);
2023-10-21 20:38:20 +00:00
END_STATE();
case 118:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_while);
2023-10-21 20:38:20 +00:00
END_STATE();
case 119:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_write);
2023-10-21 20:38:20 +00:00
END_STATE();
case 120:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_append);
2023-10-21 20:38:20 +00:00
END_STATE();
case 121:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(135);
2023-10-21 20:38:20 +00:00
END_STATE();
case 122:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_filter);
2023-10-21 20:38:20 +00:00
END_STATE();
case 123:
2023-10-22 18:48:34 +00:00
if (lookahead == 's') ADVANCE(136);
2023-10-21 20:38:20 +00:00
END_STATE();
case 124:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(137);
2023-10-21 20:38:20 +00:00
END_STATE();
case 125:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_insert);
2023-10-21 20:38:20 +00:00
END_STATE();
case 126:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_length);
2023-10-21 20:38:20 +00:00
END_STATE();
case 127:
2023-10-22 18:48:34 +00:00
if (lookahead == 't') ADVANCE(138);
2023-10-21 20:38:20 +00:00
END_STATE();
case 128:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(139);
2023-10-21 20:38:20 +00:00
END_STATE();
case 129:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(140);
2023-10-21 20:38:20 +00:00
END_STATE();
case 130:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_remove);
2023-10-21 20:38:20 +00:00
END_STATE();
case 131:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_select);
2023-10-21 20:38:20 +00:00
END_STATE();
case 132:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(141);
2023-10-21 20:38:20 +00:00
END_STATE();
case 133:
2023-10-22 18:48:34 +00:00
if (lookahead == 'i') ADVANCE(142);
2023-10-21 20:38:20 +00:00
END_STATE();
case 134:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(143);
2023-10-21 20:38:20 +00:00
END_STATE();
case 135:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(144);
2023-10-21 20:38:20 +00:00
END_STATE();
case 136:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(145);
2023-10-21 20:38:20 +00:00
END_STATE();
case 137:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(146);
2023-10-21 20:38:20 +00:00
END_STATE();
case 138:
2023-10-22 18:48:34 +00:00
if (lookahead == 'a') ADVANCE(147);
2023-10-21 20:38:20 +00:00
END_STATE();
case 139:
2023-10-22 18:48:34 +00:00
if (lookahead == 'e') ADVANCE(148);
2023-10-21 20:38:20 +00:00
END_STATE();
case 140:
2023-10-22 18:48:34 +00:00
if (lookahead == 'b') ADVANCE(149);
if (lookahead == 'f') ADVANCE(150);
if (lookahead == 'i') ADVANCE(151);
2023-10-21 20:38:20 +00:00
END_STATE();
case 141:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
2023-10-21 20:38:20 +00:00
END_STATE();
case 142:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(152);
2023-10-21 20:38:20 +00:00
END_STATE();
case 143:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(153);
2023-10-21 20:38:20 +00:00
END_STATE();
case 144:
2023-10-22 18:48:34 +00:00
if (lookahead == 'q') ADVANCE(154);
2023-10-21 20:38:20 +00:00
END_STATE();
case 145:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(155);
2023-10-21 20:38:20 +00:00
END_STATE();
case 146:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_function);
2023-10-21 20:38:20 +00:00
END_STATE();
case 147:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_metadata);
2023-10-21 20:38:20 +00:00
END_STATE();
case 148:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(156);
2023-10-21 20:38:20 +00:00
END_STATE();
case 149:
2023-10-22 18:48:34 +00:00
if (lookahead == 'o') ADVANCE(157);
2023-10-21 20:38:20 +00:00
END_STATE();
case 150:
2023-10-22 18:48:34 +00:00
if (lookahead == 'l') ADVANCE(158);
2023-10-21 20:38:20 +00:00
END_STATE();
case 151:
2023-10-22 18:48:34 +00:00
if (lookahead == 'n') ADVANCE(159);
2023-10-21 20:38:20 +00:00
END_STATE();
case 152:
2023-10-22 18:48:34 +00:00
if (lookahead == 'g') ADVANCE(160);
2023-10-21 20:38:20 +00:00
END_STATE();
case 153:
2023-10-22 18:48:34 +00:00
if (lookahead == 'm') ADVANCE(161);
2023-10-22 18:27:18 +00:00
END_STATE();
case 154:
2023-10-22 18:48:34 +00:00
if (lookahead == 'u') ADVANCE(162);
2023-10-22 18:27:18 +00:00
END_STATE();
case 155:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
2023-10-22 18:27:18 +00:00
END_STATE();
case 156:
2023-10-22 18:48:34 +00:00
if (lookahead == 'r') ADVANCE(163);
END_STATE();
case 157:
if (lookahead == 'o') ADVANCE(164);
END_STATE();
case 158:
if (lookahead == 'o') ADVANCE(165);
END_STATE();
case 159:
if (lookahead == 't') ADVANCE(166);
END_STATE();
case 160:
ACCEPT_TOKEN(anon_sym_to_string);
END_STATE();
case 161:
ACCEPT_TOKEN(anon_sym_transform);
END_STATE();
case 162:
if (lookahead == 'a') ADVANCE(167);
END_STATE();
case 163:
if (lookahead == 'o') ADVANCE(168);
END_STATE();
case 164:
if (lookahead == 'l') ADVANCE(169);
END_STATE();
case 165:
if (lookahead == 'a') ADVANCE(170);
END_STATE();
case 166:
if (lookahead == 'e') ADVANCE(171);
END_STATE();
case 167:
if (lookahead == 'l') ADVANCE(172);
END_STATE();
case 168:
if (lookahead == 'r') ADVANCE(173);
END_STATE();
case 169:
if (lookahead == 'e') ADVANCE(174);
END_STATE();
case 170:
if (lookahead == 't') ADVANCE(175);
END_STATE();
case 171:
if (lookahead == 'g') ADVANCE(176);
END_STATE();
case 172:
ACCEPT_TOKEN(anon_sym_assert_equal);
END_STATE();
case 173:
2023-10-21 17:19:01 +00:00
ACCEPT_TOKEN(anon_sym_output_error);
END_STATE();
2023-10-22 18:48:34 +00:00
case 174:
if (lookahead == 'a') ADVANCE(177);
END_STATE();
case 175:
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 176:
if (lookahead == 'e') ADVANCE(178);
END_STATE();
case 177:
if (lookahead == 'n') ADVANCE(179);
END_STATE();
case 178:
if (lookahead == 'r') ADVANCE(180);
END_STATE();
case 179:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 180:
ACCEPT_TOKEN(anon_sym_random_integer);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 14},
[2] = {.lex_state = 14},
[3] = {.lex_state = 14},
[4] = {.lex_state = 14},
[5] = {.lex_state = 14},
[6] = {.lex_state = 14},
[7] = {.lex_state = 14},
[8] = {.lex_state = 14},
[9] = {.lex_state = 14},
[10] = {.lex_state = 14},
[11] = {.lex_state = 14},
[12] = {.lex_state = 14},
[13] = {.lex_state = 14},
[14] = {.lex_state = 14},
[15] = {.lex_state = 14},
[16] = {.lex_state = 14},
[17] = {.lex_state = 14},
[18] = {.lex_state = 14},
[19] = {.lex_state = 14},
[20] = {.lex_state = 14},
[21] = {.lex_state = 14},
[22] = {.lex_state = 14},
[23] = {.lex_state = 14},
[24] = {.lex_state = 14},
[25] = {.lex_state = 14},
[26] = {.lex_state = 14},
[27] = {.lex_state = 14},
[28] = {.lex_state = 14},
[29] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[30] = {.lex_state = 14},
2023-10-21 20:38:20 +00:00
[31] = {.lex_state = 14},
[32] = {.lex_state = 14},
[33] = {.lex_state = 14},
[34] = {.lex_state = 13},
[35] = {.lex_state = 13},
[36] = {.lex_state = 13},
[37] = {.lex_state = 13},
[38] = {.lex_state = 13},
[39] = {.lex_state = 13},
[40] = {.lex_state = 13},
[41] = {.lex_state = 13},
[42] = {.lex_state = 13},
[43] = {.lex_state = 13},
[44] = {.lex_state = 13},
[45] = {.lex_state = 13},
[46] = {.lex_state = 13},
[47] = {.lex_state = 13},
[48] = {.lex_state = 13},
[49] = {.lex_state = 13},
[50] = {.lex_state = 13},
[51] = {.lex_state = 13},
[52] = {.lex_state = 13},
[53] = {.lex_state = 13},
[54] = {.lex_state = 13},
2023-10-21 17:04:17 +00:00
[55] = {.lex_state = 13},
2023-10-21 17:19:01 +00:00
[56] = {.lex_state = 13},
2023-10-21 20:38:20 +00:00
[57] = {.lex_state = 13},
[58] = {.lex_state = 13},
[59] = {.lex_state = 13},
2023-10-19 01:50:45 +00:00
[60] = {.lex_state = 15},
2023-10-21 20:38:20 +00:00
[61] = {.lex_state = 13},
[62] = {.lex_state = 15},
2023-10-21 17:19:01 +00:00
[63] = {.lex_state = 15},
2023-10-21 20:38:20 +00:00
[64] = {.lex_state = 15},
[65] = {.lex_state = 14},
[66] = {.lex_state = 15},
[67] = {.lex_state = 14},
[68] = {.lex_state = 14},
[69] = {.lex_state = 14},
[70] = {.lex_state = 14},
[71] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[72] = {.lex_state = 14},
[73] = {.lex_state = 14},
[74] = {.lex_state = 14},
[75] = {.lex_state = 14},
[76] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[77] = {.lex_state = 14},
[78] = {.lex_state = 14},
[79] = {.lex_state = 14},
[80] = {.lex_state = 14},
[81] = {.lex_state = 14},
[82] = {.lex_state = 14},
[83] = {.lex_state = 14},
[84] = {.lex_state = 14},
[85] = {.lex_state = 14},
[86] = {.lex_state = 14},
[87] = {.lex_state = 14},
[88] = {.lex_state = 14},
[89] = {.lex_state = 14},
[90] = {.lex_state = 14},
[91] = {.lex_state = 14},
[92] = {.lex_state = 14},
[93] = {.lex_state = 14},
[94] = {.lex_state = 14},
[95] = {.lex_state = 14},
[96] = {.lex_state = 14},
[97] = {.lex_state = 14},
[98] = {.lex_state = 14},
[99] = {.lex_state = 14},
[100] = {.lex_state = 14},
[101] = {.lex_state = 14},
[102] = {.lex_state = 14},
[103] = {.lex_state = 14},
[104] = {.lex_state = 14},
[105] = {.lex_state = 14},
[106] = {.lex_state = 14},
[107] = {.lex_state = 14},
[108] = {.lex_state = 14},
[109] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[110] = {.lex_state = 14},
[111] = {.lex_state = 14},
[112] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[113] = {.lex_state = 14},
[114] = {.lex_state = 14},
[115] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[116] = {.lex_state = 14},
[117] = {.lex_state = 14},
[118] = {.lex_state = 14},
[119] = {.lex_state = 14},
[120] = {.lex_state = 14},
[121] = {.lex_state = 14},
[122] = {.lex_state = 14},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
2023-10-21 17:19:01 +00:00
[125] = {.lex_state = 1},
[126] = {.lex_state = 1},
[127] = {.lex_state = 1},
2023-10-21 17:19:01 +00:00
[128] = {.lex_state = 2},
[129] = {.lex_state = 2},
[130] = {.lex_state = 1},
2023-10-21 17:19:01 +00:00
[131] = {.lex_state = 2},
[132] = {.lex_state = 2},
[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},
2023-10-19 01:50:45 +00:00
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
2023-10-18 22:18:41 +00:00
[143] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[144] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[145] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[146] = {.lex_state = 1},
[147] = {.lex_state = 1},
2023-10-21 17:19:01 +00:00
[148] = {.lex_state = 1},
[149] = {.lex_state = 1},
[150] = {.lex_state = 1},
[151] = {.lex_state = 1},
[152] = {.lex_state = 1},
[153] = {.lex_state = 1},
[154] = {.lex_state = 1},
[155] = {.lex_state = 1},
[156] = {.lex_state = 1},
2023-10-21 17:04:17 +00:00
[157] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[158] = {.lex_state = 2},
2023-10-21 17:19:01 +00:00
[159] = {.lex_state = 2},
2023-10-21 17:04:17 +00:00
[160] = {.lex_state = 2},
[161] = {.lex_state = 2},
[162] = {.lex_state = 2},
2023-10-21 17:19:01 +00:00
[163] = {.lex_state = 2},
[164] = {.lex_state = 2},
[165] = {.lex_state = 2},
2023-10-21 17:19:01 +00:00
[166] = {.lex_state = 2},
[167] = {.lex_state = 2},
[168] = {.lex_state = 2},
[169] = {.lex_state = 1},
[170] = {.lex_state = 2},
2023-10-21 17:19:01 +00:00
[171] = {.lex_state = 2},
[172] = {.lex_state = 2},
[173] = {.lex_state = 2},
[174] = {.lex_state = 1},
2023-10-21 17:19:01 +00:00
[175] = {.lex_state = 1},
[176] = {.lex_state = 1},
[177] = {.lex_state = 14},
[178] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[179] = {.lex_state = 14},
[180] = {.lex_state = 14},
[181] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[182] = {.lex_state = 14},
[183] = {.lex_state = 14},
[184] = {.lex_state = 14},
[185] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[186] = {.lex_state = 14},
[187] = {.lex_state = 14},
[188] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[189] = {.lex_state = 14},
[190] = {.lex_state = 14},
[191] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[192] = {.lex_state = 14},
[193] = {.lex_state = 14},
[194] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[195] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[196] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[197] = {.lex_state = 14},
[198] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[199] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[200] = {.lex_state = 14},
[201] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[202] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[203] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[204] = {.lex_state = 14},
[205] = {.lex_state = 0},
[206] = {.lex_state = 0},
[207] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[208] = {.lex_state = 14},
[209] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[210] = {.lex_state = 14},
[211] = {.lex_state = 0},
[212] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[213] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[214] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[215] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[216] = {.lex_state = 14},
[217] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[218] = {.lex_state = 0},
[219] = {.lex_state = 14},
[220] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[221] = {.lex_state = 0},
[222] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[223] = {.lex_state = 14},
[224] = {.lex_state = 14},
[225] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[226] = {.lex_state = 0},
[227] = {.lex_state = 14},
2023-10-21 17:19:01 +00:00
[228] = {.lex_state = 0},
[229] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[230] = {.lex_state = 0},
[231] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[232] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[233] = {.lex_state = 0},
[234] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[235] = {.lex_state = 0},
2023-10-18 22:18:41 +00:00
[236] = {.lex_state = 0},
[237] = {.lex_state = 14},
[238] = {.lex_state = 14},
[239] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[240] = {.lex_state = 14},
[241] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[242] = {.lex_state = 0},
2023-10-21 17:04:17 +00:00
[243] = {.lex_state = 0},
[244] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[245] = {.lex_state = 0},
[246] = {.lex_state = 0},
[247] = {.lex_state = 14},
[248] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[249] = {.lex_state = 14},
[250] = {.lex_state = 0},
[251] = {.lex_state = 0},
[252] = {.lex_state = 0},
[253] = {.lex_state = 0},
[254] = {.lex_state = 14},
2023-10-21 17:04:17 +00:00
[255] = {.lex_state = 0},
[256] = {.lex_state = 0},
2023-10-21 17:19:01 +00:00
[257] = {.lex_state = 0},
[258] = {.lex_state = 0},
[259] = {.lex_state = 0},
[260] = {.lex_state = 0},
[261] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[aux_sym_comment_token1] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[sym_integer] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[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-21 20:38:20 +00:00
[anon_sym_help] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_length] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_output] = ACTIONS(1),
[anon_sym_output_error] = ACTIONS(1),
2023-10-22 18:27:18 +00:00
[anon_sym_type] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_append] = ACTIONS(1),
[anon_sym_metadata] = ACTIONS(1),
[anon_sym_move] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_read] = ACTIONS(1),
[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),
[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),
},
[1] = {
[sym_root] = STATE(226),
2023-10-21 17:19:01 +00:00
[sym_item] = STATE(3),
2023-10-22 18:48:34 +00:00
[sym_statement] = STATE(10),
[sym_comment] = STATE(85),
[sym_expression] = STATE(56),
2023-10-22 18:48:34 +00:00
[sym__expression_kind] = STATE(41),
[sym_value] = STATE(41),
[sym_boolean] = STATE(46),
[sym_list] = STATE(46),
[sym_function] = STATE(46),
[sym_table] = STATE(46),
[sym_map] = STATE(46),
[sym_math] = STATE(41),
[sym_logic] = STATE(41),
[sym_assignment] = STATE(85),
[sym_if_else] = STATE(85),
[sym_if] = STATE(60),
2023-10-22 18:48:34 +00:00
[sym_function_call] = STATE(41),
[sym_while] = STATE(85),
[sym_for] = STATE(85),
[sym_transform] = STATE(85),
[sym_filter] = STATE(85),
[sym_find] = STATE(85),
[sym_remove] = STATE(85),
[sym_select] = STATE(85),
[sym_insert] = STATE(85),
[sym_async] = STATE(85),
2023-10-22 18:48:34 +00:00
[sym_tool] = STATE(41),
2023-10-21 17:19:01 +00:00
[aux_sym_root_repeat1] = STATE(3),
2023-10-22 18:48:34 +00:00
[aux_sym_item_repeat1] = STATE(10),
2023-10-21 17:04:17 +00:00
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
[anon_sym_find] = ACTIONS(33),
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-21 20:38:20 +00:00
[0] = 28,
ACTIONS(43), 1,
ts_builtin_sym_end,
ACTIONS(45), 1,
sym_identifier,
ACTIONS(48), 1,
aux_sym_comment_token1,
ACTIONS(51), 1,
anon_sym_LPAREN,
ACTIONS(54), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(66), 1,
anon_sym_function,
ACTIONS(69), 1,
anon_sym_LBRACE,
ACTIONS(72), 1,
anon_sym_table,
ACTIONS(75), 1,
anon_sym_if,
ACTIONS(78), 1,
anon_sym_while,
ACTIONS(81), 1,
anon_sym_for,
ACTIONS(84), 1,
anon_sym_transform,
ACTIONS(87), 1,
anon_sym_filter,
ACTIONS(90), 1,
anon_sym_find,
ACTIONS(93), 1,
anon_sym_remove,
ACTIONS(96), 1,
anon_sym_select,
ACTIONS(99), 1,
anon_sym_insert,
ACTIONS(102), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(57), 2,
sym_float,
sym_string,
ACTIONS(60), 2,
anon_sym_true,
anon_sym_false,
STATE(2), 2,
sym_item,
aux_sym_root_repeat1,
2023-10-22 18:48:34 +00:00
STATE(10), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[109] = 28,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
ACTIONS(105), 1,
ts_builtin_sym_end,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(2), 2,
sym_item,
aux_sym_root_repeat1,
2023-10-22 18:48:34 +00:00
STATE(10), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[218] = 27,
ACTIONS(109), 1,
sym_identifier,
ACTIONS(112), 1,
aux_sym_comment_token1,
ACTIONS(115), 1,
anon_sym_LPAREN,
ACTIONS(118), 1,
sym_integer,
ACTIONS(127), 1,
anon_sym_LBRACK,
ACTIONS(130), 1,
anon_sym_function,
ACTIONS(133), 1,
anon_sym_LBRACE,
ACTIONS(136), 1,
anon_sym_table,
ACTIONS(139), 1,
anon_sym_if,
ACTIONS(142), 1,
anon_sym_while,
ACTIONS(145), 1,
anon_sym_for,
ACTIONS(148), 1,
anon_sym_transform,
ACTIONS(151), 1,
anon_sym_filter,
ACTIONS(154), 1,
anon_sym_find,
ACTIONS(157), 1,
anon_sym_remove,
ACTIONS(160), 1,
anon_sym_select,
ACTIONS(163), 1,
anon_sym_insert,
ACTIONS(166), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(107), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(121), 2,
sym_float,
sym_string,
ACTIONS(124), 2,
anon_sym_true,
anon_sym_false,
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[324] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(258), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[429] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-22 18:48:34 +00:00
ACTIONS(169), 1,
anon_sym_RBRACE,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(4), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[534] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-22 18:48:34 +00:00
ACTIONS(171), 1,
anon_sym_RBRACE,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(24), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[639] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(234), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[744] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(232), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(46), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(41), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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,
[849] = 8,
STATE(56), 1,
sym_expression,
STATE(60), 1,
sym_if,
STATE(4), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
ACTIONS(169), 7,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
STATE(85), 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-22 18:48:34 +00:00
ACTIONS(173), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[916] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(222), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1021] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(221), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1126] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(218), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1231] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(211), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1336] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(236), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1441] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(228), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1546] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(248), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1651] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(259), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1756] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(246), 1,
sym_item,
2023-10-21 20:38:20 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1861] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(235), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[1966] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(209), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2071] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(239), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2176] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(233), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2281] = 27,
2023-10-21 20:38:20 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-22 18:48:34 +00:00
ACTIONS(175), 1,
anon_sym_RBRACE,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2386] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
2023-10-22 18:48:34 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-22 18:48:34 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-22 18:48:34 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
STATE(229), 1,
2023-10-21 20:38:20 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(6), 2,
2023-10-21 20:38:20 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2491] = 14,
2023-10-21 20:38:20 +00:00
ACTIONS(177), 1,
sym_identifier,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-22 18:48:34 +00:00
STATE(69), 1,
sym__tool_kind,
STATE(169), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(174), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(195), 25,
anon_sym_remove,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
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,
[2569] = 14,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(197), 1,
2023-10-22 18:48:34 +00:00
sym_identifier,
STATE(74), 1,
sym__tool_kind,
STATE(169), 1,
sym_expression,
2023-10-21 20:38:20 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(175), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
ACTIONS(199), 25,
anon_sym_remove,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
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,
[2647] = 14,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(201), 1,
sym_identifier,
STATE(67), 1,
sym__tool_kind,
STATE(169), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(176), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(203), 25,
anon_sym_remove,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
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,
[2725] = 26,
2023-10-21 20:38:20 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(205), 1,
sym_identifier,
ACTIONS(207), 1,
anon_sym_select,
2023-10-22 18:48:34 +00:00
ACTIONS(209), 1,
anon_sym_insert,
STATE(60), 1,
2023-10-21 20:38:20 +00:00
sym_if,
2023-10-22 18:48:34 +00:00
STATE(83), 1,
sym_statement,
STATE(133), 1,
sym_expression,
ACTIONS(183), 2,
2023-10-21 20:38:20 +00:00
sym_float,
sym_string,
ACTIONS(185), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2826] = 26,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(205), 1,
sym_identifier,
ACTIONS(207), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-22 18:48:34 +00:00
ACTIONS(209), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
STATE(60), 1,
2023-10-21 17:19:01 +00:00
sym_if,
STATE(133), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(230), 1,
sym_statement,
2023-10-21 17:19:01 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[2927] = 26,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(205), 1,
sym_identifier,
ACTIONS(207), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
2023-10-22 18:48:34 +00:00
ACTIONS(209), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
STATE(60), 1,
2023-10-21 17:19:01 +00:00
sym_if,
STATE(133), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(213), 1,
2023-10-21 17:19:01 +00:00
sym_statement,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[3028] = 26,
ACTIONS(3), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:19:01 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
2023-10-21 17:19:01 +00:00
anon_sym_select,
ACTIONS(39), 1,
2023-10-21 17:19:01 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(56), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(60), 1,
sym_if,
STATE(83), 1,
2023-10-21 17:19:01 +00:00
sym_statement,
ACTIONS(11), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(85), 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-22 18:48:34 +00:00
[3129] = 26,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
2023-10-21 20:38:20 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
2023-10-22 18:48:34 +00:00
ACTIONS(205), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
2023-10-22 18:48:34 +00:00
ACTIONS(207), 1,
anon_sym_select,
ACTIONS(209), 1,
anon_sym_insert,
STATE(60), 1,
sym_if,
STATE(133), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-22 18:48:34 +00:00
STATE(260), 1,
sym_statement,
2023-10-21 20:38:20 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(153), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
STATE(85), 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,
[3230] = 8,
2023-10-21 20:38:20 +00:00
ACTIONS(219), 1,
2023-10-21 17:04:17 +00:00
anon_sym_DASH,
STATE(112), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 4,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
2023-10-21 17:04:17 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(211), 11,
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-21 17:04:17 +00:00
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(213), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
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-22 18:48:34 +00:00
[3289] = 8,
ACTIONS(219), 1,
anon_sym_DASH,
STATE(112), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(223), 11,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(225), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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-22 18:48:34 +00:00
[3348] = 4,
STATE(112), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
ACTIONS(227), 20,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(229), 20,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3399] = 5,
ACTIONS(235), 1,
anon_sym_EQ,
2023-10-22 18:48:34 +00:00
STATE(32), 1,
sym_assignment_operator,
ACTIONS(237), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(231), 16,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(233), 21,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
2023-10-21 17:04:17 +00:00
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3451] = 2,
ACTIONS(239), 20,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
2023-10-18 22:18:41 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(241), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3496] = 2,
ACTIONS(243), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(245), 20,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3541] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(247), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(249), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3586] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(251), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(253), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3631] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(255), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(257), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3676] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(259), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(261), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3721] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(263), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(265), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3766] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(267), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(269), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3811] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(271), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(273), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3856] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(275), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(277), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3901] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(279), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(281), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3946] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(283), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(285), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[3991] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(287), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(289), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4036] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(291), 20,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(293), 20,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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-22 18:48:34 +00:00
[4081] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(295), 20,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(297), 20,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
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-22 18:48:34 +00:00
[4126] = 9,
2023-10-21 20:38:20 +00:00
ACTIONS(219), 1,
2023-10-21 17:04:17 +00:00
anon_sym_DASH,
2023-10-21 20:38:20 +00:00
ACTIONS(303), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
STATE(112), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(299), 7,
2023-10-21 17:04:17 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(301), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
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-22 18:48:34 +00:00
[4184] = 9,
2023-10-21 20:38:20 +00:00
ACTIONS(219), 1,
2023-10-19 01:50:45 +00:00
anon_sym_DASH,
ACTIONS(309), 1,
anon_sym_LBRACE,
STATE(112), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 4,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(305), 7,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(307), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4242] = 8,
2023-10-21 20:38:20 +00:00
ACTIONS(219), 1,
anon_sym_DASH,
STATE(112), 1,
sym_math_operator,
STATE(113), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(311), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(313), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4298] = 8,
ACTIONS(219), 1,
anon_sym_DASH,
STATE(112), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(315), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(317), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4354] = 16,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
sym_identifier,
ACTIONS(321), 1,
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
sym_expression,
STATE(81), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(233), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(231), 9,
2023-10-19 01:50:45 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[4425] = 16,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-21 17:04:17 +00:00
ACTIONS(319), 1,
sym_identifier,
ACTIONS(323), 1,
2023-10-21 20:38:20 +00:00
anon_sym_RPAREN,
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(72), 1,
2023-10-21 20:38:20 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(13), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(233), 4,
2023-10-21 20:38:20 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(231), 9,
2023-10-21 20:38:20 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[4496] = 16,
2023-10-21 20:38:20 +00:00
ACTIONS(7), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-21 20:38:20 +00:00
ACTIONS(15), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-21 20:38:20 +00:00
ACTIONS(17), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-21 20:38:20 +00:00
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(325), 1,
2023-10-21 20:38:20 +00:00
anon_sym_RPAREN,
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(80), 1,
2023-10-21 20:38:20 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-21 20:38:20 +00:00
ACTIONS(13), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
ACTIONS(233), 4,
2023-10-21 20:38:20 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(231), 9,
2023-10-21 20:38:20 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[4567] = 6,
2023-10-21 17:19:01 +00:00
ACTIONS(331), 1,
anon_sym_elseif,
2023-10-21 17:19:01 +00:00
ACTIONS(333), 1,
anon_sym_else,
STATE(82), 1,
2023-10-21 17:19:01 +00:00
sym_else,
STATE(62), 2,
2023-10-18 22:18:41 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-21 20:38:20 +00:00
ACTIONS(327), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(329), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_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-22 18:48:34 +00:00
[4609] = 9,
2023-10-21 20:38:20 +00:00
ACTIONS(219), 1,
2023-10-21 17:19:01 +00:00
anon_sym_DASH,
2023-10-21 20:38:20 +00:00
ACTIONS(339), 1,
2023-10-21 17:19:01 +00:00
anon_sym_COMMA,
STATE(112), 1,
2023-10-21 17:19:01 +00:00
sym_math_operator,
STATE(113), 1,
sym_logic_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 4,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
2023-10-21 17:19:01 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-21 20:38:20 +00:00
ACTIONS(335), 6,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-21 20:38:20 +00:00
ACTIONS(337), 7,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[4657] = 6,
2023-10-21 20:38:20 +00:00
ACTIONS(331), 1,
2023-10-21 17:19:01 +00:00
anon_sym_elseif,
2023-10-21 20:38:20 +00:00
ACTIONS(333), 1,
anon_sym_else,
STATE(96), 1,
sym_else,
STATE(63), 2,
2023-10-21 17:19:01 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-21 20:38:20 +00:00
ACTIONS(341), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(343), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4699] = 4,
2023-10-21 20:38:20 +00:00
ACTIONS(349), 1,
anon_sym_elseif,
STATE(63), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(345), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(347), 17,
sym_identifier,
sym_integer,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 20:38:20 +00:00
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,
2023-10-22 18:48:34 +00:00
[4736] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(352), 9,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
2023-10-21 20:38:20 +00:00
ACTIONS(354), 17,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4767] = 14,
ACTIONS(356), 1,
2023-10-21 20:38:20 +00:00
sym_identifier,
ACTIONS(359), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
ACTIONS(364), 1,
2023-10-21 20:38:20 +00:00
sym_integer,
ACTIONS(373), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACK,
ACTIONS(376), 1,
2023-10-21 20:38:20 +00:00
anon_sym_function,
ACTIONS(379), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LBRACE,
ACTIONS(382), 1,
2023-10-21 20:38:20 +00:00
anon_sym_table,
STATE(61), 1,
sym_expression,
STATE(65), 1,
2023-10-21 20:38:20 +00:00
aux_sym_list_repeat1,
ACTIONS(362), 2,
2023-10-21 20:38:20 +00:00
anon_sym_RPAREN,
anon_sym_RBRACK,
ACTIONS(367), 2,
2023-10-21 20:38:20 +00:00
sym_float,
sym_string,
ACTIONS(370), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 20:38:20 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[4822] = 2,
ACTIONS(385), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
ACTIONS(387), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[4853] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-21 17:19:01 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-21 17:19:01 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(389), 1,
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(78), 1,
aux_sym_list_repeat1,
2023-10-21 17:19:01 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-21 17:19:01 +00:00
ACTIONS(13), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:04:17 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[4907] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(391), 1,
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[4961] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(393), 1,
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(68), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5015] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
ACTIONS(395), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACK,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(79), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5069] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-21 17:19:01 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(397), 1,
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5123] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(399), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5177] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(401), 1,
anon_sym_RBRACK,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5231] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(403), 1,
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(71), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5285] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(405), 1,
2023-10-21 20:38:20 +00:00
anon_sym_RBRACK,
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(73), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5339] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(407), 1,
anon_sym_RBRACK,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(77), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5393] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(409), 1,
2023-10-21 20:38:20 +00:00
anon_sym_RBRACK,
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5447] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(411), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5501] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
ACTIONS(413), 1,
anon_sym_RBRACK,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5555] = 14,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
sym_identifier,
ACTIONS(415), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
2023-10-21 20:38:20 +00:00
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
2023-10-21 17:19:01 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5609] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
sym_identifier,
ACTIONS(417), 1,
2023-10-21 20:38:20 +00:00
anon_sym_RPAREN,
STATE(61), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
STATE(65), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[5663] = 2,
ACTIONS(341), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
ACTIONS(343), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5692] = 2,
ACTIONS(419), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(421), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5721] = 2,
ACTIONS(423), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(425), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5750] = 2,
ACTIONS(315), 8,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
ACTIONS(317), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5779] = 2,
ACTIONS(427), 8,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(429), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5808] = 2,
ACTIONS(431), 8,
2023-10-19 01:50:45 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
ACTIONS(433), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5837] = 2,
ACTIONS(435), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(437), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5866] = 2,
ACTIONS(439), 8,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
ACTIONS(441), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5895] = 2,
ACTIONS(443), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
ACTIONS(445), 16,
sym_identifier,
2023-10-18 22:18:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 22:18:41 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5924] = 2,
ACTIONS(447), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(449), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5953] = 2,
ACTIONS(451), 8,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
ACTIONS(453), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[5982] = 2,
ACTIONS(455), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(457), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[6011] = 2,
ACTIONS(459), 8,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
ACTIONS(461), 16,
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[6040] = 2,
ACTIONS(463), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(465), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
2023-10-18 22:18:41 +00:00
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,
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-22 18:48:34 +00:00
[6069] = 2,
ACTIONS(467), 8,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
ACTIONS(469), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
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-21 17:19:01 +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-22 18:48:34 +00:00
[6098] = 2,
ACTIONS(471), 8,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
ACTIONS(473), 16,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-21 17:19:01 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[6127] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
ACTIONS(475), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
STATE(150), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6175] = 12,
ACTIONS(179), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(181), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
ACTIONS(187), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
ACTIONS(189), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
ACTIONS(191), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(193), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
ACTIONS(475), 1,
sym_identifier,
STATE(155), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
ACTIONS(183), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
ACTIONS(185), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[6223] = 12,
ACTIONS(7), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
ACTIONS(15), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
ACTIONS(17), 1,
2023-10-19 01:50:45 +00:00
anon_sym_function,
ACTIONS(19), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
ACTIONS(319), 1,
sym_identifier,
STATE(55), 1,
2023-10-19 01:50:45 +00:00
sym_expression,
ACTIONS(11), 2,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6271] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
ACTIONS(475), 1,
sym_identifier,
STATE(154), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[6319] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
STATE(123), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6367] = 12,
2023-10-21 17:04:17 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
STATE(148), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-19 01:50:45 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6415] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
STATE(135), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6463] = 12,
2023-10-21 17:04:17 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
STATE(136), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6511] = 12,
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
ACTIONS(319), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
STATE(54), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6559] = 12,
2023-10-21 17:04:17 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
STATE(138), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6607] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
sym_identifier,
STATE(137), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6655] = 12,
2023-10-21 17:19:01 +00:00
ACTIONS(7), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
2023-10-21 17:19:01 +00:00
ACTIONS(9), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
2023-10-21 17:19:01 +00:00
ACTIONS(15), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
2023-10-21 17:19:01 +00:00
ACTIONS(17), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
2023-10-21 17:19:01 +00:00
ACTIONS(19), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
ACTIONS(21), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-22 18:48:34 +00:00
STATE(35), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
2023-10-21 17:19:01 +00:00
ACTIONS(11), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
2023-10-21 17:19:01 +00:00
ACTIONS(13), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-21 17:19:01 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[6703] = 12,
ACTIONS(179), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
ACTIONS(181), 1,
2023-10-21 17:19:01 +00:00
sym_integer,
ACTIONS(187), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
ACTIONS(189), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
ACTIONS(191), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
ACTIONS(193), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
ACTIONS(475), 1,
sym_identifier,
STATE(126), 1,
2023-10-21 17:19:01 +00:00
sym_expression,
ACTIONS(183), 2,
2023-10-21 17:19:01 +00:00
sym_float,
sym_string,
ACTIONS(185), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6751] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
sym_identifier,
STATE(125), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6799] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
ACTIONS(319), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
STATE(36), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6847] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-22 18:48:34 +00:00
STATE(34), 1,
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6895] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
sym_identifier,
STATE(139), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6943] = 12,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
STATE(130), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[6991] = 12,
ACTIONS(477), 1,
sym_identifier,
ACTIONS(479), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(481), 1,
2023-10-21 17:04:17 +00:00
sym_integer,
ACTIONS(487), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
ACTIONS(489), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
ACTIONS(491), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(493), 1,
2023-10-21 17:04:17 +00:00
anon_sym_table,
STATE(131), 1,
2023-10-21 17:04:17 +00:00
sym_expression,
ACTIONS(483), 2,
2023-10-21 17:04:17 +00:00
sym_float,
sym_string,
ACTIONS(485), 2,
2023-10-21 17:04:17 +00:00
anon_sym_true,
anon_sym_false,
STATE(173), 5,
2023-10-21 17:04:17 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(171), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[7039] = 12,
2023-10-21 17:04:17 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-21 17:04:17 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-21 17:04:17 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-21 17:04:17 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-21 17:04:17 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-21 17:04:17 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(319), 1,
sym_identifier,
STATE(53), 1,
sym_expression,
2023-10-21 17:04:17 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-21 17:04:17 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-22 18:48:34 +00:00
STATE(46), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-22 18:48:34 +00:00
STATE(41), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[7087] = 12,
ACTIONS(179), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACK,
ACTIONS(189), 1,
2023-10-21 17:04:17 +00:00
anon_sym_function,
ACTIONS(191), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(475), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
STATE(127), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(156), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(153), 6,
2023-10-21 17:04:17 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[7135] = 12,
ACTIONS(477), 1,
sym_identifier,
ACTIONS(479), 1,
anon_sym_LPAREN,
ACTIONS(481), 1,
sym_integer,
ACTIONS(487), 1,
anon_sym_LBRACK,
ACTIONS(489), 1,
anon_sym_function,
ACTIONS(491), 1,
anon_sym_LBRACE,
ACTIONS(493), 1,
anon_sym_table,
STATE(132), 1,
sym_expression,
ACTIONS(483), 2,
sym_float,
sym_string,
ACTIONS(485), 2,
anon_sym_true,
anon_sym_false,
STATE(173), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(171), 6,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[7183] = 12,
ACTIONS(477), 1,
sym_identifier,
ACTIONS(479), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
ACTIONS(481), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
ACTIONS(487), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
ACTIONS(489), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
ACTIONS(491), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
ACTIONS(493), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
STATE(129), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
ACTIONS(483), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
ACTIONS(485), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
STATE(173), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(171), 6,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-21 17:19:01 +00:00
sym_tool,
2023-10-22 18:48:34 +00:00
[7231] = 12,
ACTIONS(477), 1,
sym_identifier,
ACTIONS(479), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LPAREN,
ACTIONS(481), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
ACTIONS(487), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
ACTIONS(489), 1,
anon_sym_function,
ACTIONS(491), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
ACTIONS(493), 1,
anon_sym_table,
STATE(128), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
ACTIONS(483), 2,
sym_float,
sym_string,
ACTIONS(485), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
STATE(173), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(171), 6,
2023-10-21 17:19:01 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-22 18:48:34 +00:00
[7279] = 2,
ACTIONS(497), 6,
2023-10-21 17:19:01 +00:00
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
ACTIONS(495), 16,
2023-10-21 17:19:01 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-22 18:48:34 +00:00
[7306] = 6,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(223), 3,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 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-22 18:48:34 +00:00
[7337] = 5,
ACTIONS(235), 1,
2023-10-21 17:19:01 +00:00
anon_sym_EQ,
2023-10-22 18:48:34 +00:00
STATE(29), 1,
2023-10-21 17:19:01 +00:00
sym_assignment_operator,
ACTIONS(237), 2,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(233), 4,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(231), 10,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
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-22 18:48:34 +00:00
[7366] = 4,
STATE(110), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
ACTIONS(229), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(227), 14,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7393] = 6,
STATE(110), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(211), 3,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 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-22 18:48:34 +00:00
[7424] = 7,
ACTIONS(305), 1,
anon_sym_RBRACE,
ACTIONS(309), 1,
anon_sym_LBRACE,
STATE(110), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 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-22 18:48:34 +00:00
[7456] = 4,
STATE(120), 1,
2023-10-21 17:19:01 +00:00
sym_logic_operator,
STATE(121), 1,
sym_math_operator,
ACTIONS(229), 4,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:19:01 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(227), 11,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
2023-10-21 17:19:01 +00:00
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7482] = 7,
ACTIONS(211), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
ACTIONS(213), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
STATE(120), 1,
sym_logic_operator,
STATE(121), 1,
sym_math_operator,
ACTIONS(215), 3,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7514] = 7,
ACTIONS(299), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
ACTIONS(303), 1,
anon_sym_LBRACE,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 6,
2023-10-21 17:19:01 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
2023-10-21 17:19:01 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7546] = 7,
ACTIONS(223), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
ACTIONS(225), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
STATE(120), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
STATE(121), 1,
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7578] = 7,
ACTIONS(499), 1,
sym_identifier,
ACTIONS(501), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
STATE(120), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-21 17:19:01 +00:00
STATE(121), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7610] = 6,
ACTIONS(315), 1,
anon_sym_RBRACE,
STATE(110), 1,
2023-10-21 17:04:17 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 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-22 18:48:34 +00:00
[7639] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(265), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(263), 14,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7660] = 6,
ACTIONS(503), 1,
anon_sym_LBRACE,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 6,
2023-10-21 17:04:17 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-21 17:19:01 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 17:04:17 +00:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7689] = 6,
ACTIONS(505), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
STATE(110), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 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-22 18:48:34 +00:00
[7718] = 6,
ACTIONS(507), 1,
anon_sym_LBRACE,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 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-22 18:48:34 +00:00
[7747] = 6,
ACTIONS(311), 1,
anon_sym_RBRACE,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 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-22 18:48:34 +00:00
[7776] = 6,
ACTIONS(509), 1,
anon_sym_LBRACE,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 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-22 18:48:34 +00:00
[7805] = 2,
ACTIONS(289), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(287), 14,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7826] = 2,
ACTIONS(293), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(291), 14,
2023-10-21 17:04:17 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7847] = 2,
ACTIONS(297), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(295), 14,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7868] = 2,
ACTIONS(245), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(243), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7889] = 2,
ACTIONS(281), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(279), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7910] = 2,
ACTIONS(285), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(283), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7931] = 2,
ACTIONS(269), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(267), 14,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7952] = 2,
ACTIONS(261), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(259), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[7973] = 6,
ACTIONS(511), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
STATE(110), 1,
2023-10-19 01:50:45 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 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-22 18:48:34 +00:00
[8002] = 2,
ACTIONS(257), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(255), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8023] = 6,
ACTIONS(513), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
STATE(110), 1,
2023-10-21 17:19:01 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:19:01 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 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-22 18:48:34 +00:00
[8052] = 2,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(239), 14,
2023-10-21 17:04:17 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8073] = 2,
ACTIONS(277), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(275), 14,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8094] = 2,
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(251), 14,
2023-10-21 17:19:01 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-21 17:04:17 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8115] = 6,
ACTIONS(515), 1,
anon_sym_LBRACE,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 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-22 18:48:34 +00:00
[8144] = 6,
ACTIONS(517), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
STATE(110), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
STATE(111), 1,
2023-10-21 17:04:17 +00:00
sym_math_operator,
2023-10-21 20:38:20 +00:00
ACTIONS(215), 2,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-21 20:38:20 +00:00
ACTIONS(217), 5,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-21 20:38:20 +00:00
ACTIONS(221), 6,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8173] = 2,
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(271), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8194] = 2,
ACTIONS(249), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(247), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8215] = 2,
ACTIONS(297), 4,
2023-10-21 17:19:01 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:19:01 +00:00
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(295), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8235] = 2,
ACTIONS(293), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(291), 11,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8255] = 2,
ACTIONS(257), 4,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(255), 11,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8275] = 2,
ACTIONS(241), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(239), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8295] = 2,
ACTIONS(289), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(287), 11,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8315] = 2,
ACTIONS(269), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(267), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8335] = 2,
ACTIONS(285), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(283), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8355] = 2,
ACTIONS(277), 4,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-21 17:04:17 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(275), 11,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8375] = 2,
2023-10-21 20:38:20 +00:00
ACTIONS(281), 4,
2023-10-19 01:50:45 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
2023-10-21 20:38:20 +00:00
ACTIONS(279), 11,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8395] = 2,
ACTIONS(261), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(259), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8415] = 2,
ACTIONS(265), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(263), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8435] = 5,
STATE(110), 1,
sym_logic_operator,
STATE(111), 1,
sym_math_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 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-22 18:48:34 +00:00
[8461] = 2,
ACTIONS(245), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(243), 11,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8481] = 2,
ACTIONS(253), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(251), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8501] = 2,
ACTIONS(249), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(247), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8521] = 2,
ACTIONS(273), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-22 18:48:34 +00:00
ACTIONS(271), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8541] = 3,
ACTIONS(519), 1,
anon_sym_RPAREN,
2023-10-22 18:48:34 +00:00
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(251), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8562] = 3,
ACTIONS(521), 1,
anon_sym_RPAREN,
2023-10-22 18:48:34 +00:00
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(251), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8583] = 3,
ACTIONS(523), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RPAREN,
2023-10-22 18:48:34 +00:00
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
ACTIONS(251), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-22 18:48:34 +00:00
[8604] = 2,
ACTIONS(525), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(362), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[8622] = 2,
ACTIONS(529), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
ACTIONS(527), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-22 18:48:34 +00:00
[8638] = 2,
ACTIONS(533), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
ACTIONS(531), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-22 18:48:34 +00:00
[8654] = 2,
ACTIONS(537), 1,
anon_sym_COMMA,
ACTIONS(535), 2,
sym_identifier,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
[8662] = 3,
ACTIONS(539), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(541), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8672] = 3,
ACTIONS(539), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(543), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8682] = 3,
ACTIONS(539), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
ACTIONS(545), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8692] = 3,
ACTIONS(547), 1,
sym_identifier,
ACTIONS(550), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
STATE(184), 1,
2023-10-21 17:19:01 +00:00
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8702] = 3,
ACTIONS(539), 1,
sym_identifier,
ACTIONS(552), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
STATE(188), 1,
2023-10-21 17:04:17 +00:00
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8712] = 3,
2023-10-21 17:19:01 +00:00
ACTIONS(554), 1,
sym_identifier,
ACTIONS(556), 1,
anon_sym_RBRACE,
STATE(193), 1,
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8722] = 3,
ACTIONS(539), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(558), 1,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
STATE(183), 1,
2023-10-18 23:26:49 +00:00
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8732] = 3,
2023-10-21 17:19:01 +00:00
ACTIONS(560), 1,
sym_identifier,
ACTIONS(563), 1,
2023-10-21 17:19:01 +00:00
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8742] = 3,
ACTIONS(539), 1,
sym_identifier,
ACTIONS(565), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8752] = 3,
ACTIONS(539), 1,
sym_identifier,
ACTIONS(567), 1,
anon_sym_GT,
STATE(189), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8762] = 3,
ACTIONS(539), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
ACTIONS(569), 1,
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8772] = 3,
ACTIONS(539), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
ACTIONS(571), 1,
2023-10-21 17:19:01 +00:00
anon_sym_GT,
STATE(188), 1,
2023-10-21 17:19:01 +00:00
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8782] = 3,
2023-10-21 17:19:01 +00:00
ACTIONS(554), 1,
sym_identifier,
ACTIONS(573), 1,
anon_sym_RBRACE,
STATE(184), 1,
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8792] = 3,
ACTIONS(539), 1,
sym_identifier,
ACTIONS(575), 1,
anon_sym_GT,
STATE(192), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8802] = 3,
ACTIONS(554), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(577), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-21 17:19:01 +00:00
STATE(196), 1,
2023-10-21 17:04:17 +00:00
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8812] = 3,
2023-10-21 17:19:01 +00:00
ACTIONS(554), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(579), 1,
anon_sym_RBRACE,
STATE(184), 1,
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8822] = 3,
2023-10-21 17:19:01 +00:00
ACTIONS(554), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(581), 1,
anon_sym_RBRACE,
STATE(198), 1,
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8832] = 3,
2023-10-21 17:19:01 +00:00
ACTIONS(554), 1,
sym_identifier,
2023-10-21 17:19:01 +00:00
ACTIONS(583), 1,
anon_sym_RBRACE,
STATE(184), 1,
aux_sym_map_repeat1,
2023-10-22 18:48:34 +00:00
[8842] = 3,
ACTIONS(539), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
ACTIONS(585), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
STATE(188), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8852] = 3,
ACTIONS(539), 1,
sym_identifier,
ACTIONS(587), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
STATE(199), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8862] = 3,
ACTIONS(539), 1,
sym_identifier,
ACTIONS(589), 1,
2023-10-21 17:04:17 +00:00
anon_sym_GT,
STATE(185), 1,
2023-10-21 17:04:17 +00:00
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8872] = 2,
ACTIONS(539), 1,
2023-10-21 17:04:17 +00:00
sym_identifier,
STATE(191), 1,
2023-10-19 01:50:45 +00:00
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8879] = 2,
ACTIONS(539), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
STATE(182), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8886] = 2,
ACTIONS(539), 1,
sym_identifier,
STATE(181), 1,
aux_sym_function_repeat1,
2023-10-22 18:48:34 +00:00
[8893] = 2,
ACTIONS(591), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
ACTIONS(593), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[8900] = 2,
ACTIONS(595), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
ACTIONS(597), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[8907] = 2,
ACTIONS(599), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LT,
ACTIONS(601), 1,
2023-10-21 17:04:17 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[8914] = 1,
ACTIONS(563), 2,
2023-10-21 17:04:17 +00:00
sym_identifier,
anon_sym_GT,
2023-10-22 18:48:34 +00:00
[8919] = 1,
ACTIONS(603), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8923] = 1,
ACTIONS(605), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
[8927] = 1,
ACTIONS(607), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8931] = 1,
ACTIONS(609), 1,
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[8935] = 1,
ACTIONS(611), 1,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8939] = 1,
ACTIONS(613), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
[8943] = 1,
ACTIONS(615), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
[8947] = 1,
ACTIONS(617), 1,
anon_sym_in,
2023-10-22 18:48:34 +00:00
[8951] = 1,
ACTIONS(619), 1,
anon_sym_in,
2023-10-22 18:48:34 +00:00
[8955] = 1,
ACTIONS(621), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8959] = 1,
ACTIONS(623), 1,
2023-10-21 17:19:01 +00:00
anon_sym_from,
2023-10-22 18:48:34 +00:00
[8963] = 1,
ACTIONS(625), 1,
2023-10-21 17:04:17 +00:00
anon_sym_from,
2023-10-22 18:48:34 +00:00
[8967] = 1,
ACTIONS(627), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8971] = 1,
ACTIONS(629), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8975] = 1,
ACTIONS(631), 1,
anon_sym_in,
2023-10-22 18:48:34 +00:00
[8979] = 1,
ACTIONS(633), 1,
anon_sym_from,
2023-10-22 18:48:34 +00:00
[8983] = 1,
ACTIONS(635), 1,
anon_sym_in,
2023-10-22 18:48:34 +00:00
[8987] = 1,
ACTIONS(637), 1,
2023-10-21 17:19:01 +00:00
ts_builtin_sym_end,
2023-10-22 18:48:34 +00:00
[8991] = 1,
ACTIONS(639), 1,
2023-10-21 17:19:01 +00:00
anon_sym_in,
2023-10-22 18:48:34 +00:00
[8995] = 1,
ACTIONS(641), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[8999] = 1,
ACTIONS(643), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9003] = 1,
ACTIONS(645), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9007] = 1,
ACTIONS(647), 1,
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[9011] = 1,
ACTIONS(649), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9015] = 1,
ACTIONS(651), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9019] = 1,
ACTIONS(653), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9023] = 1,
ACTIONS(655), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9027] = 1,
ACTIONS(657), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9031] = 1,
ACTIONS(659), 1,
anon_sym_into,
2023-10-22 18:48:34 +00:00
[9035] = 1,
ACTIONS(661), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-22 18:48:34 +00:00
[9039] = 1,
ACTIONS(663), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9043] = 1,
ACTIONS(665), 1,
2023-10-21 17:19:01 +00:00
anon_sym_from,
2023-10-22 18:48:34 +00:00
[9047] = 1,
ACTIONS(667), 1,
anon_sym_into,
2023-10-22 18:48:34 +00:00
[9051] = 1,
ACTIONS(669), 1,
anon_sym_LT,
2023-10-22 18:48:34 +00:00
[9055] = 1,
ACTIONS(671), 1,
anon_sym_EQ,
2023-10-22 18:48:34 +00:00
[9059] = 1,
ACTIONS(673), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-22 18:48:34 +00:00
[9063] = 1,
ACTIONS(675), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[9067] = 1,
ACTIONS(677), 1,
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9071] = 1,
ACTIONS(679), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
[9075] = 1,
ACTIONS(681), 1,
2023-10-21 17:04:17 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9079] = 1,
ACTIONS(683), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
[9083] = 1,
ACTIONS(685), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-22 18:48:34 +00:00
[9087] = 1,
ACTIONS(687), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-22 18:48:34 +00:00
[9091] = 1,
ACTIONS(689), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[9095] = 1,
ACTIONS(691), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[9099] = 1,
ACTIONS(693), 1,
sym_identifier,
2023-10-22 18:48:34 +00:00
[9103] = 1,
ACTIONS(695), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LT,
2023-10-22 18:48:34 +00:00
[9107] = 1,
ACTIONS(697), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[9111] = 1,
ACTIONS(699), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACE,
2023-10-22 18:48:34 +00:00
[9115] = 1,
ACTIONS(701), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9119] = 1,
ACTIONS(703), 1,
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9123] = 1,
ACTIONS(705), 1,
2023-10-21 17:19:01 +00:00
anon_sym_RBRACE,
2023-10-22 18:48:34 +00:00
[9127] = 1,
ACTIONS(707), 1,
anon_sym_LBRACE,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-10-21 20:38:20 +00:00
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 109,
[SMALL_STATE(4)] = 218,
[SMALL_STATE(5)] = 324,
[SMALL_STATE(6)] = 429,
[SMALL_STATE(7)] = 534,
[SMALL_STATE(8)] = 639,
[SMALL_STATE(9)] = 744,
[SMALL_STATE(10)] = 849,
2023-10-22 18:48:34 +00:00
[SMALL_STATE(11)] = 916,
[SMALL_STATE(12)] = 1021,
[SMALL_STATE(13)] = 1126,
[SMALL_STATE(14)] = 1231,
[SMALL_STATE(15)] = 1336,
[SMALL_STATE(16)] = 1441,
[SMALL_STATE(17)] = 1546,
[SMALL_STATE(18)] = 1651,
[SMALL_STATE(19)] = 1756,
[SMALL_STATE(20)] = 1861,
[SMALL_STATE(21)] = 1966,
[SMALL_STATE(22)] = 2071,
[SMALL_STATE(23)] = 2176,
[SMALL_STATE(24)] = 2281,
2023-10-21 20:38:20 +00:00
[SMALL_STATE(25)] = 2386,
[SMALL_STATE(26)] = 2491,
2023-10-22 18:48:34 +00:00
[SMALL_STATE(27)] = 2569,
[SMALL_STATE(28)] = 2647,
[SMALL_STATE(29)] = 2725,
[SMALL_STATE(30)] = 2826,
[SMALL_STATE(31)] = 2927,
[SMALL_STATE(32)] = 3028,
[SMALL_STATE(33)] = 3129,
[SMALL_STATE(34)] = 3230,
[SMALL_STATE(35)] = 3289,
[SMALL_STATE(36)] = 3348,
[SMALL_STATE(37)] = 3399,
[SMALL_STATE(38)] = 3451,
[SMALL_STATE(39)] = 3496,
[SMALL_STATE(40)] = 3541,
[SMALL_STATE(41)] = 3586,
[SMALL_STATE(42)] = 3631,
[SMALL_STATE(43)] = 3676,
[SMALL_STATE(44)] = 3721,
[SMALL_STATE(45)] = 3766,
[SMALL_STATE(46)] = 3811,
[SMALL_STATE(47)] = 3856,
[SMALL_STATE(48)] = 3901,
[SMALL_STATE(49)] = 3946,
[SMALL_STATE(50)] = 3991,
[SMALL_STATE(51)] = 4036,
[SMALL_STATE(52)] = 4081,
[SMALL_STATE(53)] = 4126,
[SMALL_STATE(54)] = 4184,
[SMALL_STATE(55)] = 4242,
[SMALL_STATE(56)] = 4298,
[SMALL_STATE(57)] = 4354,
[SMALL_STATE(58)] = 4425,
[SMALL_STATE(59)] = 4496,
[SMALL_STATE(60)] = 4567,
[SMALL_STATE(61)] = 4609,
[SMALL_STATE(62)] = 4657,
[SMALL_STATE(63)] = 4699,
[SMALL_STATE(64)] = 4736,
[SMALL_STATE(65)] = 4767,
[SMALL_STATE(66)] = 4822,
[SMALL_STATE(67)] = 4853,
[SMALL_STATE(68)] = 4907,
[SMALL_STATE(69)] = 4961,
[SMALL_STATE(70)] = 5015,
[SMALL_STATE(71)] = 5069,
[SMALL_STATE(72)] = 5123,
[SMALL_STATE(73)] = 5177,
[SMALL_STATE(74)] = 5231,
[SMALL_STATE(75)] = 5285,
[SMALL_STATE(76)] = 5339,
[SMALL_STATE(77)] = 5393,
[SMALL_STATE(78)] = 5447,
[SMALL_STATE(79)] = 5501,
[SMALL_STATE(80)] = 5555,
[SMALL_STATE(81)] = 5609,
[SMALL_STATE(82)] = 5663,
[SMALL_STATE(83)] = 5692,
[SMALL_STATE(84)] = 5721,
[SMALL_STATE(85)] = 5750,
[SMALL_STATE(86)] = 5779,
[SMALL_STATE(87)] = 5808,
[SMALL_STATE(88)] = 5837,
[SMALL_STATE(89)] = 5866,
[SMALL_STATE(90)] = 5895,
[SMALL_STATE(91)] = 5924,
[SMALL_STATE(92)] = 5953,
[SMALL_STATE(93)] = 5982,
[SMALL_STATE(94)] = 6011,
[SMALL_STATE(95)] = 6040,
[SMALL_STATE(96)] = 6069,
[SMALL_STATE(97)] = 6098,
[SMALL_STATE(98)] = 6127,
[SMALL_STATE(99)] = 6175,
[SMALL_STATE(100)] = 6223,
[SMALL_STATE(101)] = 6271,
[SMALL_STATE(102)] = 6319,
[SMALL_STATE(103)] = 6367,
[SMALL_STATE(104)] = 6415,
[SMALL_STATE(105)] = 6463,
[SMALL_STATE(106)] = 6511,
[SMALL_STATE(107)] = 6559,
[SMALL_STATE(108)] = 6607,
[SMALL_STATE(109)] = 6655,
[SMALL_STATE(110)] = 6703,
[SMALL_STATE(111)] = 6751,
[SMALL_STATE(112)] = 6799,
[SMALL_STATE(113)] = 6847,
[SMALL_STATE(114)] = 6895,
[SMALL_STATE(115)] = 6943,
[SMALL_STATE(116)] = 6991,
[SMALL_STATE(117)] = 7039,
[SMALL_STATE(118)] = 7087,
[SMALL_STATE(119)] = 7135,
[SMALL_STATE(120)] = 7183,
[SMALL_STATE(121)] = 7231,
[SMALL_STATE(122)] = 7279,
[SMALL_STATE(123)] = 7306,
[SMALL_STATE(124)] = 7337,
[SMALL_STATE(125)] = 7366,
[SMALL_STATE(126)] = 7393,
[SMALL_STATE(127)] = 7424,
[SMALL_STATE(128)] = 7456,
[SMALL_STATE(129)] = 7482,
[SMALL_STATE(130)] = 7514,
[SMALL_STATE(131)] = 7546,
[SMALL_STATE(132)] = 7578,
[SMALL_STATE(133)] = 7610,
[SMALL_STATE(134)] = 7639,
[SMALL_STATE(135)] = 7660,
[SMALL_STATE(136)] = 7689,
[SMALL_STATE(137)] = 7718,
[SMALL_STATE(138)] = 7747,
[SMALL_STATE(139)] = 7776,
[SMALL_STATE(140)] = 7805,
[SMALL_STATE(141)] = 7826,
[SMALL_STATE(142)] = 7847,
[SMALL_STATE(143)] = 7868,
[SMALL_STATE(144)] = 7889,
[SMALL_STATE(145)] = 7910,
[SMALL_STATE(146)] = 7931,
[SMALL_STATE(147)] = 7952,
[SMALL_STATE(148)] = 7973,
[SMALL_STATE(149)] = 8002,
[SMALL_STATE(150)] = 8023,
[SMALL_STATE(151)] = 8052,
[SMALL_STATE(152)] = 8073,
[SMALL_STATE(153)] = 8094,
[SMALL_STATE(154)] = 8115,
[SMALL_STATE(155)] = 8144,
[SMALL_STATE(156)] = 8173,
[SMALL_STATE(157)] = 8194,
[SMALL_STATE(158)] = 8215,
[SMALL_STATE(159)] = 8235,
[SMALL_STATE(160)] = 8255,
[SMALL_STATE(161)] = 8275,
[SMALL_STATE(162)] = 8295,
[SMALL_STATE(163)] = 8315,
[SMALL_STATE(164)] = 8335,
[SMALL_STATE(165)] = 8355,
[SMALL_STATE(166)] = 8375,
[SMALL_STATE(167)] = 8395,
[SMALL_STATE(168)] = 8415,
[SMALL_STATE(169)] = 8435,
[SMALL_STATE(170)] = 8461,
[SMALL_STATE(171)] = 8481,
[SMALL_STATE(172)] = 8501,
[SMALL_STATE(173)] = 8521,
[SMALL_STATE(174)] = 8541,
[SMALL_STATE(175)] = 8562,
[SMALL_STATE(176)] = 8583,
[SMALL_STATE(177)] = 8604,
[SMALL_STATE(178)] = 8622,
[SMALL_STATE(179)] = 8638,
[SMALL_STATE(180)] = 8654,
[SMALL_STATE(181)] = 8662,
[SMALL_STATE(182)] = 8672,
[SMALL_STATE(183)] = 8682,
[SMALL_STATE(184)] = 8692,
[SMALL_STATE(185)] = 8702,
[SMALL_STATE(186)] = 8712,
[SMALL_STATE(187)] = 8722,
[SMALL_STATE(188)] = 8732,
[SMALL_STATE(189)] = 8742,
[SMALL_STATE(190)] = 8752,
[SMALL_STATE(191)] = 8762,
[SMALL_STATE(192)] = 8772,
[SMALL_STATE(193)] = 8782,
[SMALL_STATE(194)] = 8792,
[SMALL_STATE(195)] = 8802,
[SMALL_STATE(196)] = 8812,
[SMALL_STATE(197)] = 8822,
[SMALL_STATE(198)] = 8832,
[SMALL_STATE(199)] = 8842,
[SMALL_STATE(200)] = 8852,
[SMALL_STATE(201)] = 8862,
[SMALL_STATE(202)] = 8872,
[SMALL_STATE(203)] = 8879,
[SMALL_STATE(204)] = 8886,
[SMALL_STATE(205)] = 8893,
[SMALL_STATE(206)] = 8900,
[SMALL_STATE(207)] = 8907,
[SMALL_STATE(208)] = 8914,
[SMALL_STATE(209)] = 8919,
[SMALL_STATE(210)] = 8923,
[SMALL_STATE(211)] = 8927,
[SMALL_STATE(212)] = 8931,
[SMALL_STATE(213)] = 8935,
[SMALL_STATE(214)] = 8939,
[SMALL_STATE(215)] = 8943,
[SMALL_STATE(216)] = 8947,
[SMALL_STATE(217)] = 8951,
[SMALL_STATE(218)] = 8955,
[SMALL_STATE(219)] = 8959,
[SMALL_STATE(220)] = 8963,
[SMALL_STATE(221)] = 8967,
[SMALL_STATE(222)] = 8971,
[SMALL_STATE(223)] = 8975,
[SMALL_STATE(224)] = 8979,
[SMALL_STATE(225)] = 8983,
[SMALL_STATE(226)] = 8987,
[SMALL_STATE(227)] = 8991,
[SMALL_STATE(228)] = 8995,
[SMALL_STATE(229)] = 8999,
[SMALL_STATE(230)] = 9003,
[SMALL_STATE(231)] = 9007,
[SMALL_STATE(232)] = 9011,
[SMALL_STATE(233)] = 9015,
[SMALL_STATE(234)] = 9019,
[SMALL_STATE(235)] = 9023,
[SMALL_STATE(236)] = 9027,
[SMALL_STATE(237)] = 9031,
[SMALL_STATE(238)] = 9035,
[SMALL_STATE(239)] = 9039,
[SMALL_STATE(240)] = 9043,
[SMALL_STATE(241)] = 9047,
[SMALL_STATE(242)] = 9051,
[SMALL_STATE(243)] = 9055,
[SMALL_STATE(244)] = 9059,
[SMALL_STATE(245)] = 9063,
[SMALL_STATE(246)] = 9067,
[SMALL_STATE(247)] = 9071,
[SMALL_STATE(248)] = 9075,
[SMALL_STATE(249)] = 9079,
[SMALL_STATE(250)] = 9083,
[SMALL_STATE(251)] = 9087,
[SMALL_STATE(252)] = 9091,
[SMALL_STATE(253)] = 9095,
[SMALL_STATE(254)] = 9099,
[SMALL_STATE(255)] = 9103,
[SMALL_STATE(256)] = 9107,
[SMALL_STATE(257)] = 9111,
[SMALL_STATE(258)] = 9115,
[SMALL_STATE(259)] = 9119,
[SMALL_STATE(260)] = 9123,
[SMALL_STATE(261)] = 9127,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
2023-10-22 18:48:34 +00:00
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212),
2023-10-21 17:19:01 +00:00
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(37),
[48] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(90),
2023-10-22 18:48:34 +00:00
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(26),
[54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(46),
[57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(46),
[60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(40),
[63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(76),
[66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(205),
[69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(197),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(244),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(105),
[78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(108),
[81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(238),
[84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(210),
[87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(254),
[90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(249),
[93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(247),
[96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(242),
[99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(241),
[102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(212),
2023-10-21 17:19:01 +00:00
[105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
2023-10-19 01:50:45 +00:00
[107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(37),
[112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(90),
2023-10-22 18:48:34 +00:00
[115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(26),
[118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(46),
[121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(46),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(40),
[127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(76),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(205),
[133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(197),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(244),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(105),
[142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(108),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(238),
[148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(210),
[151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(254),
[154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(249),
[157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(247),
[160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(242),
[163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(241),
[166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(212),
2023-10-22 18:48:34 +00:00
[169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250),
2023-10-22 18:48:34 +00:00
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69),
[197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
[199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
[201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67),
[205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124),
[207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251),
[209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237),
[211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179),
[217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178),
[221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
2023-10-22 18:48:34 +00:00
[223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122),
[237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
2023-10-22 18:48:34 +00:00
[239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
2023-10-22 18:48:34 +00:00
[259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 3),
[269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 3),
2023-10-22 18:48:34 +00:00
[271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
2023-10-22 18:48:34 +00:00
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
2023-10-22 18:48:34 +00:00
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 4),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 4),
2023-10-21 20:38:20 +00:00
[299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
2023-10-22 18:48:34 +00:00
[319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41),
[321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
2023-10-21 20:38:20 +00:00
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
2023-10-21 17:19:01 +00:00
[345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(114),
[352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
2023-10-22 18:48:34 +00:00
[356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(41),
[359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(26),
[362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
2023-10-22 18:48:34 +00:00
[364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(46),
[367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(46),
[370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(40),
[373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(76),
[376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(205),
[379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(197),
[382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(244),
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
2023-10-22 18:48:34 +00:00
[391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
2023-10-22 18:48:34 +00:00
[417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 8),
[461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 8),
[463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 9),
[473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 9),
[475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153),
[477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171),
2023-10-22 18:48:34 +00:00
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207),
[491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255),
[495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3),
[501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
2023-10-22 18:48:34 +00:00
[505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(243),
[550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(180),
[563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
2023-10-22 18:48:34 +00:00
[581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
2023-10-22 18:48:34 +00:00
[607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[637] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
2023-10-22 18:48:34 +00:00
[641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
2023-10-22 18:48:34 +00:00
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
2023-10-22 18:48:34 +00:00
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
2023-10-22 18:48:34 +00:00
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
2023-10-22 18:48:34 +00:00
[707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
};
#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