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

17076 lines
418 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
2023-10-31 13:31:10 +00:00
#define STATE_COUNT 343
#define LARGE_STATE_COUNT 36
#define SYMBOL_COUNT 130
#define ALIAS_COUNT 0
2023-10-31 13:31:10 +00:00
#define TOKEN_COUNT 84
#define EXTERNAL_TOKEN_COUNT 0
2023-10-31 05:09:29 +00:00
#define FIELD_COUNT 4
2023-10-31 13:31:10 +00:00
#define MAX_ALIAS_SEQUENCE_LENGTH 7
2023-10-31 05:09:29 +00:00
#define PRODUCTION_ID_COUNT 3
enum {
sym_identifier = 1,
2023-10-31 07:17:58 +00:00
sym_comment = 2,
anon_sym_LBRACE = 3,
anon_sym_RBRACE = 4,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN = 5,
anon_sym_RPAREN = 6,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1 = 7,
aux_sym_float_token1 = 8,
2023-10-31 05:09:29 +00:00
sym_string = 9,
anon_sym_true = 10,
anon_sym_false = 11,
anon_sym_LBRACK = 12,
anon_sym_COMMA = 13,
anon_sym_RBRACK = 14,
2023-10-31 09:51:37 +00:00
anon_sym_EQ = 15,
anon_sym_COLON = 16,
anon_sym_DOT_DOT = 17,
anon_sym_function = 18,
anon_sym_LT = 19,
anon_sym_GT = 20,
anon_sym_table = 21,
2023-10-31 13:31:10 +00:00
anon_sym_PLUS = 22,
anon_sym_DASH = 23,
anon_sym_STAR = 24,
anon_sym_SLASH = 25,
anon_sym_PERCENT = 26,
anon_sym_EQ_EQ = 27,
anon_sym_BANG_EQ = 28,
anon_sym_AMP_AMP = 29,
anon_sym_PIPE_PIPE = 30,
anon_sym_GT_EQ = 31,
anon_sym_LT_EQ = 32,
anon_sym_PLUS_EQ = 33,
anon_sym_DASH_EQ = 34,
anon_sym_if = 35,
anon_sym_elseif = 36,
anon_sym_else = 37,
anon_sym_match = 38,
anon_sym_EQ_GT = 39,
anon_sym_while = 40,
anon_sym_for = 41,
anon_sym_in = 42,
anon_sym_transform = 43,
anon_sym_filter = 44,
anon_sym_find = 45,
anon_sym_remove = 46,
anon_sym_from = 47,
anon_sym_reduce = 48,
anon_sym_to = 49,
anon_sym_select = 50,
anon_sym_insert = 51,
anon_sym_into = 52,
anon_sym_async = 53,
anon_sym_assert = 54,
anon_sym_assert_equal = 55,
anon_sym_download = 56,
anon_sym_help = 57,
anon_sym_length = 58,
anon_sym_output = 59,
anon_sym_output_error = 60,
anon_sym_type = 61,
anon_sym_workdir = 62,
anon_sym_append = 63,
anon_sym_metadata = 64,
anon_sym_move = 65,
anon_sym_read = 66,
anon_sym_write = 67,
anon_sym_from_json = 68,
anon_sym_to_json = 69,
anon_sym_to_string = 70,
anon_sym_to_float = 71,
anon_sym_bash = 72,
anon_sym_fish = 73,
anon_sym_raw = 74,
anon_sym_sh = 75,
anon_sym_zsh = 76,
anon_sym_random = 77,
anon_sym_random_boolean = 78,
anon_sym_random_float = 79,
anon_sym_random_integer = 80,
anon_sym_columns = 81,
anon_sym_rows = 82,
anon_sym_reverse = 83,
sym_root = 84,
sym_block = 85,
sym_statement = 86,
sym_expression = 87,
sym__expression_kind = 88,
sym_value = 89,
sym_integer = 90,
sym_float = 91,
sym_boolean = 92,
sym_list = 93,
sym_map = 94,
sym_index = 95,
sym_function = 96,
sym_table = 97,
sym_math = 98,
sym_math_operator = 99,
sym_logic = 100,
sym_logic_operator = 101,
sym_assignment = 102,
sym_assignment_operator = 103,
sym_if_else = 104,
sym_if = 105,
sym_else_if = 106,
sym_else = 107,
sym_function_call = 108,
sym_match = 109,
sym_while = 110,
sym_for = 111,
sym_transform = 112,
sym_filter = 113,
sym_find = 114,
sym_remove = 115,
sym_reduce = 116,
sym_select = 117,
sym_insert = 118,
sym_async = 119,
sym_tool = 120,
sym__tool_kind = 121,
aux_sym_root_repeat1 = 122,
aux_sym_block_repeat1 = 123,
aux_sym_list_repeat1 = 124,
aux_sym_map_repeat1 = 125,
aux_sym_function_repeat1 = 126,
aux_sym_if_else_repeat1 = 127,
aux_sym_match_repeat1 = 128,
aux_sym_tool_repeat1 = 129,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
2023-10-31 07:17:58 +00:00
[sym_comment] = "comment",
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = "integer_token1",
[aux_sym_float_token1] = "float_token1",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = "=",
[anon_sym_COLON] = ":",
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = "..",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_table] = "table",
2023-10-31 13:31:10 +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] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
2023-10-31 05:09:29 +00:00
[anon_sym_match] = "match",
[anon_sym_EQ_GT] = "=>",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_in] = "in",
[anon_sym_transform] = "transform",
[anon_sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[anon_sym_find] = "find",
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = "remove",
[anon_sym_from] = "from",
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = "reduce",
[anon_sym_to] = "to",
[anon_sym_select] = "select",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
[anon_sym_async] = "async",
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = "assert",
2023-10-21 17:19:01 +00:00
[anon_sym_assert_equal] = "assert_equal",
2023-10-22 20:50:09 +00:00
[anon_sym_download] = "download",
2023-10-21 20:38:20 +00:00
[anon_sym_help] = "help",
2023-10-21 17:19:01 +00:00
[anon_sym_length] = "length",
2023-10-21 20:38:20 +00:00
[anon_sym_output] = "output",
[anon_sym_output_error] = "output_error",
2023-10-22 18:27:18 +00:00
[anon_sym_type] = "type",
2023-10-22 20:41:37 +00:00
[anon_sym_workdir] = "workdir",
2023-10-21 20:38:20 +00:00
[anon_sym_append] = "append",
[anon_sym_metadata] = "metadata",
[anon_sym_move] = "move",
2023-10-21 17:19:01 +00:00
[anon_sym_read] = "read",
[anon_sym_write] = "write",
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = "from_json",
[anon_sym_to_json] = "to_json",
[anon_sym_to_string] = "to_string",
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = "to_float",
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = "bash",
[anon_sym_fish] = "fish",
[anon_sym_raw] = "raw",
[anon_sym_sh] = "sh",
[anon_sym_zsh] = "zsh",
2023-10-22 18:48:34 +00:00
[anon_sym_random] = "random",
[anon_sym_random_boolean] = "random_boolean",
[anon_sym_random_float] = "random_float",
[anon_sym_random_integer] = "random_integer",
2023-10-22 20:32:55 +00:00
[anon_sym_columns] = "columns",
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = "rows",
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = "reverse",
[sym_root] = "root",
2023-10-31 13:31:10 +00:00
[sym_block] = "block",
[sym_statement] = "statement",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[sym_value] = "value",
2023-10-31 09:51:37 +00:00
[sym_integer] = "integer",
[sym_float] = "float",
[sym_boolean] = "boolean",
[sym_list] = "list",
2023-10-29 23:31:06 +00:00
[sym_map] = "map",
[sym_index] = "index",
[sym_function] = "function",
[sym_table] = "table",
[sym_math] = "math",
2023-10-31 13:31:10 +00:00
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
2023-10-31 13:31:10 +00:00
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
2023-10-31 13:31:10 +00:00
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_function_call] = "function_call",
2023-10-31 05:09:29 +00:00
[sym_match] = "match",
[sym_while] = "while",
[sym_for] = "for",
[sym_transform] = "transform",
[sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[sym_find] = "find",
2023-10-19 01:50:45 +00:00
[sym_remove] = "remove",
2023-10-31 05:09:29 +00:00
[sym_reduce] = "reduce",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_async] = "async",
2023-10-21 17:19:01 +00:00
[sym_tool] = "tool",
[sym__tool_kind] = "_tool_kind",
[aux_sym_root_repeat1] = "root_repeat1",
2023-10-31 13:31:10 +00:00
[aux_sym_block_repeat1] = "block_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
2023-10-31 09:51:37 +00:00
[aux_sym_map_repeat1] = "map_repeat1",
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
2023-10-31 05:09:29 +00:00
[aux_sym_match_repeat1] = "match_repeat1",
2023-10-31 13:31:10 +00:00
[aux_sym_tool_repeat1] = "tool_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
2023-10-31 07:17:58 +00:00
[sym_comment] = sym_comment,
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = aux_sym_integer_token1,
[aux_sym_float_token1] = aux_sym_float_token1,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_COLON] = anon_sym_COLON,
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_table] = anon_sym_table,
2023-10-31 13:31:10 +00:00
[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,
2023-10-31 05:09:29 +00:00
[anon_sym_match] = anon_sym_match,
[anon_sym_EQ_GT] = anon_sym_EQ_GT,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[anon_sym_in] = anon_sym_in,
[anon_sym_transform] = anon_sym_transform,
[anon_sym_filter] = anon_sym_filter,
2023-10-18 22:18:41 +00:00
[anon_sym_find] = anon_sym_find,
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = anon_sym_remove,
[anon_sym_from] = anon_sym_from,
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = anon_sym_reduce,
[anon_sym_to] = anon_sym_to,
[anon_sym_select] = anon_sym_select,
[anon_sym_insert] = anon_sym_insert,
[anon_sym_into] = anon_sym_into,
[anon_sym_async] = anon_sym_async,
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = anon_sym_assert,
2023-10-21 17:19:01 +00:00
[anon_sym_assert_equal] = anon_sym_assert_equal,
2023-10-22 20:50:09 +00:00
[anon_sym_download] = anon_sym_download,
2023-10-21 20:38:20 +00:00
[anon_sym_help] = anon_sym_help,
2023-10-21 17:19:01 +00:00
[anon_sym_length] = anon_sym_length,
2023-10-21 20:38:20 +00:00
[anon_sym_output] = anon_sym_output,
[anon_sym_output_error] = anon_sym_output_error,
2023-10-22 18:27:18 +00:00
[anon_sym_type] = anon_sym_type,
2023-10-22 20:41:37 +00:00
[anon_sym_workdir] = anon_sym_workdir,
2023-10-21 20:38:20 +00:00
[anon_sym_append] = anon_sym_append,
[anon_sym_metadata] = anon_sym_metadata,
[anon_sym_move] = anon_sym_move,
2023-10-21 17:19:01 +00:00
[anon_sym_read] = anon_sym_read,
[anon_sym_write] = anon_sym_write,
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = anon_sym_from_json,
[anon_sym_to_json] = anon_sym_to_json,
[anon_sym_to_string] = anon_sym_to_string,
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = anon_sym_to_float,
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = anon_sym_bash,
[anon_sym_fish] = anon_sym_fish,
[anon_sym_raw] = anon_sym_raw,
[anon_sym_sh] = anon_sym_sh,
[anon_sym_zsh] = anon_sym_zsh,
2023-10-22 18:48:34 +00:00
[anon_sym_random] = anon_sym_random,
[anon_sym_random_boolean] = anon_sym_random_boolean,
[anon_sym_random_float] = anon_sym_random_float,
[anon_sym_random_integer] = anon_sym_random_integer,
2023-10-22 20:32:55 +00:00
[anon_sym_columns] = anon_sym_columns,
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = anon_sym_rows,
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = anon_sym_reverse,
[sym_root] = sym_root,
2023-10-31 13:31:10 +00:00
[sym_block] = sym_block,
[sym_statement] = sym_statement,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[sym_value] = sym_value,
2023-10-31 09:51:37 +00:00
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
2023-10-29 23:31:06 +00:00
[sym_map] = sym_map,
[sym_index] = sym_index,
[sym_function] = sym_function,
[sym_table] = sym_table,
[sym_math] = sym_math,
2023-10-31 13:31:10 +00:00
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
2023-10-31 13:31:10 +00:00
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
2023-10-31 13:31:10 +00:00
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_function_call] = sym_function_call,
2023-10-31 05:09:29 +00:00
[sym_match] = sym_match,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_transform] = sym_transform,
[sym_filter] = sym_filter,
2023-10-18 22:18:41 +00:00
[sym_find] = sym_find,
2023-10-19 01:50:45 +00:00
[sym_remove] = sym_remove,
2023-10-31 05:09:29 +00:00
[sym_reduce] = sym_reduce,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_async] = sym_async,
2023-10-21 17:19:01 +00:00
[sym_tool] = sym_tool,
[sym__tool_kind] = sym__tool_kind,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
2023-10-31 13:31:10 +00:00
[aux_sym_block_repeat1] = aux_sym_block_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
2023-10-31 09:51:37 +00:00
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
2023-10-29 23:31:06 +00:00
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
2023-10-31 05:09:29 +00:00
[aux_sym_match_repeat1] = aux_sym_match_repeat1,
2023-10-31 13:31:10 +00:00
[aux_sym_tool_repeat1] = aux_sym_tool_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
2023-10-31 07:17:58 +00:00
[sym_comment] = {
.visible = true,
.named = true,
},
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = {
.visible = false,
.named = false,
2023-10-29 23:31:06 +00:00
},
2023-10-31 09:51:37 +00:00
[aux_sym_float_token1] = {
.visible = false,
.named = false,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_function] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_LT] = {
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_GT] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = false,
},
2023-10-29 23:31:06 +00:00
[anon_sym_table] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = false,
},
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = {
2023-10-31 05:09:29 +00:00
.visible = true,
2023-10-31 13:31:10 +00:00
.named = false,
2023-10-31 05:09:29 +00:00
},
2023-10-31 13:31:10 +00:00
[anon_sym_DASH] = {
.visible = true,
2023-10-31 13:31:10 +00:00
.named = false,
},
2023-10-31 13:31:10 +00:00
[anon_sym_STAR] = {
.visible = true,
2023-10-31 13:31:10 +00:00
.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,
},
2023-10-31 05:09:29 +00:00
[anon_sym_match] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_GT] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_transform] = {
.visible = true,
.named = false,
},
[anon_sym_filter] = {
.visible = true,
.named = false,
},
2023-10-18 22:18:41 +00:00
[anon_sym_find] = {
.visible = true,
.named = false,
},
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_from] = {
.visible = true,
.named = false,
},
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = {
.visible = true,
.named = false,
},
[anon_sym_to] = {
.visible = true,
.named = false,
},
[anon_sym_select] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_insert] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_into] = {
.visible = true,
.named = false,
},
2023-10-21 17:04:17 +00:00
[anon_sym_async] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_assert] = {
.visible = true,
.named = false,
},
[anon_sym_assert_equal] = {
.visible = true,
.named = false,
},
2023-10-22 20:50:09 +00:00
[anon_sym_download] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_help] = {
.visible = true,
.named = false,
},
[anon_sym_length] = {
.visible = true,
.named = false,
},
2023-10-21 17:19:01 +00:00
[anon_sym_output] = {
.visible = true,
.named = false,
},
[anon_sym_output_error] = {
.visible = true,
.named = false,
},
2023-10-22 18:27:18 +00:00
[anon_sym_type] = {
.visible = true,
.named = false,
},
2023-10-22 20:41:37 +00:00
[anon_sym_workdir] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_append] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_metadata] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_move] = {
2023-10-21 17:19:01 +00:00
.visible = true,
.named = false,
},
[anon_sym_read] = {
.visible = true,
.named = false,
},
[anon_sym_write] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = {
.visible = true,
.named = false,
},
[anon_sym_to_json] = {
.visible = true,
.named = false,
},
[anon_sym_to_string] = {
.visible = true,
.named = false,
},
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = {
.visible = true,
.named = false,
},
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = {
.visible = true,
.named = false,
},
[anon_sym_fish] = {
.visible = true,
.named = false,
},
[anon_sym_raw] = {
.visible = true,
.named = false,
},
[anon_sym_sh] = {
.visible = true,
.named = false,
},
[anon_sym_zsh] = {
.visible = true,
.named = false,
},
2023-10-22 18:48:34 +00:00
[anon_sym_random] = {
.visible = true,
.named = false,
},
[anon_sym_random_boolean] = {
.visible = true,
.named = false,
},
[anon_sym_random_float] = {
.visible = true,
.named = false,
},
[anon_sym_random_integer] = {
.visible = true,
.named = false,
},
2023-10-22 20:41:37 +00:00
[anon_sym_columns] = {
2023-10-22 20:32:55 +00:00
.visible = true,
.named = false,
},
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = {
2023-10-22 20:32:55 +00:00
.visible = true,
.named = false,
},
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_block] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[sym_value] = {
.visible = true,
.named = true,
},
2023-10-31 09:51:37 +00:00
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_map] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_index] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_function] = {
.visible = true,
.named = true,
},
2023-10-29 23:31:06 +00:00
[sym_table] = {
2023-10-28 14:28:43 +00:00
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
2023-10-31 13:31:10 +00:00
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
2023-10-31 05:09:29 +00:00
[sym_match] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
2023-10-18 22:18:41 +00:00
[sym_find] = {
.visible = true,
.named = true,
},
2023-10-19 01:50:45 +00:00
[sym_remove] = {
.visible = true,
.named = true,
},
2023-10-31 05:09:29 +00:00
[sym_reduce] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_async] = {
.visible = true,
.named = true,
},
2023-10-21 17:19:01 +00:00
[sym_tool] = {
.visible = true,
.named = true,
},
[sym__tool_kind] = {
.visible = false,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 13:31:10 +00:00
[aux_sym_block_repeat1] = {
2023-10-31 09:51:37 +00:00
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 09:51:37 +00:00
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 05:09:29 +00:00
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 05:09:29 +00:00
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 05:09:29 +00:00
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
2023-10-31 13:31:10 +00:00
[aux_sym_tool_repeat1] = {
.visible = false,
.named = false,
},
};
2023-10-31 05:09:29 +00:00
enum {
field_collection = 1,
field_count = 2,
field_predicate = 3,
field_statement_id = 4,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_collection] = "collection",
[field_count] = "count",
[field_predicate] = "predicate",
[field_statement_id] = "statement_id",
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 3},
[2] = {.index = 3, .length = 4},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_collection, 3},
2023-10-31 13:31:10 +00:00
{field_predicate, 4},
2023-10-31 05:09:29 +00:00
{field_statement_id, 1},
[3] =
{field_collection, 4},
{field_count, 1},
2023-10-31 13:31:10 +00:00
{field_predicate, 5},
2023-10-31 05:09:29 +00:00
{field_statement_id, 2},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
2023-10-31 05:09:29 +00:00
[3] = 3,
2023-10-31 13:31:10 +00:00
[4] = 2,
[5] = 3,
2023-10-22 20:50:09 +00:00
[6] = 6,
2023-10-22 20:41:37 +00:00
[7] = 7,
2023-10-31 13:31:10 +00:00
[8] = 6,
[9] = 7,
[10] = 2,
[11] = 3,
[12] = 12,
2023-10-31 13:31:10 +00:00
[13] = 12,
2023-10-28 14:28:43 +00:00
[14] = 14,
2023-10-31 13:31:10 +00:00
[15] = 12,
2023-10-22 20:32:55 +00:00
[16] = 16,
2023-10-31 05:09:29 +00:00
[17] = 17,
[18] = 18,
2023-10-31 07:17:58 +00:00
[19] = 19,
2023-10-29 23:31:06 +00:00
[20] = 20,
2023-10-31 07:17:58 +00:00
[21] = 21,
2023-10-31 13:31:10 +00:00
[22] = 21,
[23] = 20,
[24] = 19,
[25] = 18,
[26] = 17,
[27] = 16,
[28] = 17,
[29] = 16,
[30] = 18,
[31] = 14,
[32] = 19,
[33] = 20,
[34] = 21,
[35] = 14,
[36] = 36,
[37] = 37,
2023-10-31 10:21:21 +00:00
[38] = 38,
2023-10-31 13:31:10 +00:00
[39] = 37,
2023-10-31 05:09:29 +00:00
[40] = 40,
2023-10-31 13:31:10 +00:00
[41] = 40,
2023-10-31 07:17:58 +00:00
[42] = 42,
2023-10-31 13:31:10 +00:00
[43] = 6,
[44] = 42,
[45] = 7,
[46] = 42,
[47] = 42,
2023-10-29 23:31:06 +00:00
[48] = 48,
[49] = 49,
[50] = 50,
2023-10-31 13:31:10 +00:00
[51] = 50,
2023-10-21 17:19:01 +00:00
[52] = 52,
[53] = 53,
2023-10-31 13:31:10 +00:00
[54] = 49,
2023-10-21 20:38:20 +00:00
[55] = 55,
2023-10-31 13:31:10 +00:00
[56] = 55,
[57] = 55,
[58] = 53,
2023-10-28 14:28:43 +00:00
[59] = 59,
2023-10-31 13:31:10 +00:00
[60] = 50,
2023-10-31 05:09:29 +00:00
[61] = 61,
2023-10-31 13:31:10 +00:00
[62] = 49,
[63] = 55,
[64] = 50,
2023-10-31 10:21:21 +00:00
[65] = 65,
2023-10-31 13:31:10 +00:00
[66] = 65,
[67] = 65,
[68] = 68,
[69] = 69,
2023-10-29 23:31:06 +00:00
[70] = 70,
2023-10-31 13:31:10 +00:00
[71] = 71,
[72] = 71,
2023-10-31 10:21:21 +00:00
[73] = 73,
[74] = 74,
2023-10-31 13:31:10 +00:00
[75] = 75,
2023-10-31 10:21:21 +00:00
[76] = 76,
[77] = 77,
2023-10-31 13:31:10 +00:00
[78] = 78,
2023-10-31 05:09:29 +00:00
[79] = 79,
2023-10-31 13:31:10 +00:00
[80] = 74,
[81] = 81,
2023-10-31 10:21:21 +00:00
[82] = 82,
2023-10-31 13:31:10 +00:00
[83] = 81,
[84] = 82,
[85] = 79,
[86] = 76,
[87] = 77,
[88] = 78,
[89] = 89,
2023-10-31 10:21:21 +00:00
[90] = 90,
2023-10-31 05:09:29 +00:00
[91] = 91,
[92] = 92,
2023-10-31 07:17:58 +00:00
[93] = 93,
[94] = 94,
[95] = 95,
2023-10-31 05:09:29 +00:00
[96] = 96,
2023-10-31 13:31:10 +00:00
[97] = 97,
2023-10-31 10:21:21 +00:00
[98] = 98,
2023-10-31 13:31:10 +00:00
[99] = 99,
2023-10-31 10:21:21 +00:00
[100] = 100,
2023-10-31 13:31:10 +00:00
[101] = 101,
2023-10-31 10:21:21 +00:00
[102] = 102,
2023-10-31 13:31:10 +00:00
[103] = 103,
2023-10-31 09:51:37 +00:00
[104] = 104,
2023-10-31 13:31:10 +00:00
[105] = 105,
[106] = 106,
2023-10-31 05:09:29 +00:00
[107] = 107,
2023-10-31 13:31:10 +00:00
[108] = 108,
[109] = 109,
[110] = 110,
[111] = 111,
[112] = 112,
[113] = 113,
[114] = 114,
[115] = 115,
[116] = 116,
[117] = 117,
[118] = 118,
[119] = 119,
2023-10-31 10:21:21 +00:00
[120] = 120,
2023-10-28 14:28:43 +00:00
[121] = 121,
2023-10-31 10:21:21 +00:00
[122] = 122,
2023-10-31 13:31:10 +00:00
[123] = 71,
[124] = 124,
2023-10-31 10:21:21 +00:00
[125] = 125,
2023-10-31 13:31:10 +00:00
[126] = 124,
[127] = 77,
[128] = 128,
[129] = 129,
[130] = 130,
[131] = 131,
2023-10-31 10:21:21 +00:00
[132] = 132,
2023-10-31 05:09:29 +00:00
[133] = 133,
[134] = 134,
[135] = 135,
[136] = 136,
2023-10-31 07:17:58 +00:00
[137] = 137,
2023-10-31 13:31:10 +00:00
[138] = 137,
2023-10-31 09:51:37 +00:00
[139] = 139,
2023-10-31 13:31:10 +00:00
[140] = 134,
[141] = 133,
[142] = 136,
2023-10-31 05:09:29 +00:00
[143] = 143,
2023-10-31 13:31:10 +00:00
[144] = 135,
2023-10-31 07:17:58 +00:00
[145] = 145,
2023-10-31 09:51:37 +00:00
[146] = 146,
2023-10-31 07:17:58 +00:00
[147] = 147,
[148] = 148,
[149] = 149,
2023-10-31 13:31:10 +00:00
[150] = 149,
2023-10-31 07:17:58 +00:00
[151] = 151,
2023-10-31 13:31:10 +00:00
[152] = 148,
2023-10-31 07:17:58 +00:00
[153] = 153,
2023-10-31 13:31:10 +00:00
[154] = 154,
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
[159] = 155,
[160] = 156,
[161] = 161,
[162] = 157,
[163] = 158,
[164] = 164,
[165] = 164,
[166] = 166,
[167] = 166,
[168] = 168,
[169] = 169,
[170] = 169,
[171] = 171,
[172] = 168,
[173] = 169,
[174] = 168,
[175] = 175,
[176] = 147,
[177] = 177,
[178] = 148,
[179] = 149,
[180] = 151,
[181] = 181,
2023-10-31 13:31:10 +00:00
[182] = 177,
[183] = 161,
[184] = 154,
[185] = 154,
[186] = 153,
[187] = 177,
[188] = 188,
2023-10-31 13:31:10 +00:00
[189] = 155,
[190] = 169,
[191] = 168,
[192] = 177,
[193] = 156,
[194] = 157,
[195] = 158,
[196] = 161,
[197] = 147,
[198] = 164,
[199] = 147,
[200] = 188,
[201] = 166,
[202] = 151,
[203] = 79,
[204] = 74,
2023-10-31 09:51:37 +00:00
[205] = 205,
2023-10-31 13:31:10 +00:00
[206] = 74,
[207] = 81,
[208] = 76,
[209] = 78,
[210] = 78,
[211] = 79,
[212] = 76,
[213] = 81,
[214] = 112,
[215] = 111,
[216] = 110,
[217] = 107,
[218] = 98,
[219] = 120,
[220] = 109,
[221] = 94,
[222] = 117,
[223] = 122,
[224] = 101,
[225] = 92,
[226] = 93,
[227] = 105,
[228] = 121,
[229] = 114,
[230] = 91,
2023-10-31 09:51:37 +00:00
[231] = 231,
[232] = 232,
2023-10-31 13:31:10 +00:00
[233] = 233,
[234] = 234,
2023-10-31 10:21:21 +00:00
[235] = 235,
2023-10-31 13:31:10 +00:00
[236] = 233,
[237] = 233,
2023-10-31 09:51:37 +00:00
[238] = 238,
[239] = 239,
2023-10-31 13:31:10 +00:00
[240] = 239,
[241] = 239,
2023-10-31 09:51:37 +00:00
[242] = 242,
[243] = 243,
2023-10-31 13:31:10 +00:00
[244] = 243,
2023-10-31 09:51:37 +00:00
[245] = 245,
[246] = 246,
2023-10-31 10:21:21 +00:00
[247] = 247,
2023-10-31 09:51:37 +00:00
[248] = 248,
[249] = 249,
[250] = 250,
[251] = 251,
[252] = 252,
2023-10-31 13:31:10 +00:00
[253] = 250,
2023-10-31 09:51:37 +00:00
[254] = 254,
[255] = 255,
[256] = 256,
[257] = 257,
2023-10-31 13:31:10 +00:00
[258] = 255,
[259] = 259,
[260] = 251,
[261] = 252,
[262] = 254,
[263] = 256,
[264] = 259,
[265] = 250,
[266] = 259,
[267] = 255,
[268] = 252,
[269] = 259,
2023-10-31 10:21:21 +00:00
[270] = 270,
2023-10-31 13:31:10 +00:00
[271] = 251,
[272] = 252,
[273] = 255,
[274] = 274,
[275] = 275,
[276] = 275,
[277] = 275,
[278] = 275,
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 282,
[283] = 283,
[284] = 284,
[285] = 285,
[286] = 286,
[287] = 287,
[288] = 288,
[289] = 289,
[290] = 290,
[291] = 284,
[292] = 285,
[293] = 293,
[294] = 294,
[295] = 281,
[296] = 296,
[297] = 287,
[298] = 298,
[299] = 299,
[300] = 300,
[301] = 293,
[302] = 302,
[303] = 287,
[304] = 288,
[305] = 289,
[306] = 306,
[307] = 284,
[308] = 285,
[309] = 281,
[310] = 296,
[311] = 289,
[312] = 299,
[313] = 313,
[314] = 294,
[315] = 315,
[316] = 302,
[317] = 300,
[318] = 318,
[319] = 282,
[320] = 320,
[321] = 299,
[322] = 322,
[323] = 313,
[324] = 324,
[325] = 318,
[326] = 290,
[327] = 294,
[328] = 300,
[329] = 302,
[330] = 282,
[331] = 331,
[332] = 324,
[333] = 324,
[334] = 288,
[335] = 290,
[336] = 296,
[337] = 286,
[338] = 313,
[339] = 286,
[340] = 287,
[341] = 322,
[342] = 322,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
2023-10-31 13:31:10 +00:00
if (eof) ADVANCE(15);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(2);
if (lookahead == '#') ADVANCE(11);
if (lookahead == '%') ADVANCE(45);
if (lookahead == '&') ADVANCE(3);
if (lookahead == '\'') ADVANCE(4);
if (lookahead == '(') ADVANCE(20);
if (lookahead == ')') ADVANCE(21);
if (lookahead == '*') ADVANCE(43);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '.') ADVANCE(5);
if (lookahead == '/') ADVANCE(44);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(34);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(31);
if (lookahead == ']') ADVANCE(33);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(25);
if (lookahead == '{') ADVANCE(18);
if (lookahead == '|') ADVANCE(12);
if (lookahead == '}') ADVANCE(19);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-31 05:09:29 +00:00
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-31 13:31:10 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(27);
END_STATE();
case 1:
2023-10-31 13:31:10 +00:00
if (lookahead == '!') ADVANCE(6);
if (lookahead == '#') ADVANCE(11);
if (lookahead == '%') ADVANCE(45);
if (lookahead == '&') ADVANCE(3);
if (lookahead == ')') ADVANCE(21);
if (lookahead == '*') ADVANCE(43);
if (lookahead == '+') ADVANCE(39);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '.') ADVANCE(5);
if (lookahead == '/') ADVANCE(44);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(7);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '{') ADVANCE(18);
if (lookahead == '|') ADVANCE(12);
if (lookahead == '}') ADVANCE(19);
2023-10-31 09:51:37 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-31 13:31:10 +00:00
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
END_STATE();
case 2:
2023-10-31 13:31:10 +00:00
if (lookahead == '"') ADVANCE(30);
if (lookahead != 0) ADVANCE(2);
END_STATE();
case 3:
2023-10-31 13:31:10 +00:00
if (lookahead == '&') ADVANCE(48);
END_STATE();
case 4:
2023-10-31 13:31:10 +00:00
if (lookahead == '\'') ADVANCE(30);
if (lookahead != 0) ADVANCE(4);
END_STATE();
case 5:
2023-10-31 13:31:10 +00:00
if (lookahead == '.') ADVANCE(36);
END_STATE();
case 6:
2023-10-31 13:31:10 +00:00
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 7:
2023-10-31 13:31:10 +00:00
if (lookahead == '=') ADVANCE(46);
if (lookahead == '>') ADVANCE(55);
END_STATE();
case 8:
2023-10-31 13:31:10 +00:00
if (lookahead == '`') ADVANCE(30);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
2023-10-31 13:31:10 +00:00
if (lookahead == 'f') ADVANCE(54);
END_STATE();
case 10:
2023-10-31 13:31:10 +00:00
if (lookahead == 'i') ADVANCE(9);
END_STATE();
case 11:
2023-10-31 13:31:10 +00:00
if (lookahead == '|') ADVANCE(17);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(16);
if (lookahead != 0) ADVANCE(11);
END_STATE();
case 12:
2023-10-31 13:31:10 +00:00
if (lookahead == '|') ADVANCE(49);
END_STATE();
case 13:
2023-10-31 13:31:10 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(29);
END_STATE();
case 14:
2023-10-31 13:31:10 +00:00
if (eof) ADVANCE(15);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(2);
if (lookahead == '#') ADVANCE(11);
if (lookahead == '%') ADVANCE(45);
if (lookahead == '&') ADVANCE(3);
if (lookahead == '\'') ADVANCE(4);
if (lookahead == '(') ADVANCE(20);
if (lookahead == ')') ADVANCE(21);
if (lookahead == '*') ADVANCE(43);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(32);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '.') ADVANCE(5);
if (lookahead == '/') ADVANCE(44);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
if (lookahead == ':') ADVANCE(35);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(34);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(31);
if (lookahead == ']') ADVANCE(33);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(18);
if (lookahead == '|') ADVANCE(12);
if (lookahead == '}') ADVANCE(19);
2023-10-31 07:17:58 +00:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
2023-10-31 13:31:10 +00:00
lookahead == ' ') SKIP(14)
2023-10-31 07:17:58 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
2023-10-31 13:31:10 +00:00
('_' <= lookahead && lookahead <= 'z')) ADVANCE(27);
END_STATE();
2023-10-31 13:31:10 +00:00
case 15:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
2023-10-31 13:31:10 +00:00
case 16:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(sym_comment);
END_STATE();
2023-10-31 13:31:10 +00:00
case 17:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(sym_comment);
2023-10-31 13:31:10 +00:00
if (lookahead == '|') ADVANCE(17);
2023-10-31 07:17:58 +00:00
if (lookahead == '\n' ||
2023-10-31 13:31:10 +00:00
lookahead == '#') ADVANCE(16);
if (lookahead != 0) ADVANCE(11);
2023-10-31 07:17:58 +00:00
END_STATE();
2023-10-31 13:31:10 +00:00
case 18:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
2023-10-31 13:31:10 +00:00
case 19:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
2023-10-31 13:31:10 +00:00
case 20:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
2023-10-31 13:31:10 +00:00
case 21:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
2023-10-31 13:31:10 +00:00
case 22:
2023-10-31 07:17:58 +00:00
ACCEPT_TOKEN(sym_identifier);
END_STATE();
2023-10-31 13:31:10 +00:00
case 23:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 13:31:10 +00:00
if (lookahead == ' ') ADVANCE(10);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 13:31:10 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
END_STATE();
2023-10-31 13:31:10 +00:00
case 24:
2023-10-29 23:31:06 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 13:31:10 +00:00
if (lookahead == 'e') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22);
2023-10-29 23:31:06 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 13:31:10 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
END_STATE();
2023-10-31 13:31:10 +00:00
case 25:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 13:31:10 +00:00
if (lookahead == 'l') ADVANCE(26);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22);
2023-10-31 05:09:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 13:31:10 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
END_STATE();
2023-10-31 13:31:10 +00:00
case 26:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 13:31:10 +00:00
if (lookahead == 's') ADVANCE(24);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22);
2023-10-31 09:51:37 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 13:31:10 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-10-31 13:31:10 +00:00
case 27:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(sym_identifier);
2023-10-31 13:31:10 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(22);
2023-10-31 05:09:29 +00:00
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
2023-10-31 13:31:10 +00:00
('a' <= lookahead && lookahead <= 'z')) ADVANCE(27);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-10-31 13:31:10 +00:00
case 28:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(aux_sym_integer_token1);
2023-10-31 13:31:10 +00:00
if (lookahead == '.') ADVANCE(13);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-10-31 13:31:10 +00:00
case 29:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(aux_sym_float_token1);
2023-10-31 13:31:10 +00:00
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(29);
2023-10-31 09:51:37 +00:00
END_STATE();
2023-10-31 13:31:10 +00:00
case 30:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(sym_string);
END_STATE();
2023-10-31 13:31:10 +00:00
case 31:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
2023-10-31 13:31:10 +00:00
case 32:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
2023-10-31 13:31:10 +00:00
case 33:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
2023-10-31 13:31:10 +00:00
case 34:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_EQ);
2023-10-31 13:31:10 +00:00
if (lookahead == '=') ADVANCE(46);
if (lookahead == '>') ADVANCE(55);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(51);
2023-10-31 07:17:58 +00:00
END_STATE();
case 38:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(50);
2023-10-31 07:17:58 +00:00
END_STATE();
case 39:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
2023-10-31 07:17:58 +00:00
END_STATE();
case 40:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(52);
2023-10-31 07:17:58 +00:00
END_STATE();
case 41:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
2023-10-31 07:17:58 +00:00
END_STATE();
case 42:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
if (lookahead == '=') ADVANCE(53);
2023-10-31 07:17:58 +00:00
END_STATE();
case 43:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_STAR);
2023-10-31 07:17:58 +00:00
END_STATE();
case 44:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
2023-10-31 07:17:58 +00:00
case 45:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
2023-10-31 07:17:58 +00:00
case 46:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 47:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 48:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_AMP_AMP);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-10-31 07:17:58 +00:00
case 49:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
2023-10-28 14:28:43 +00:00
END_STATE();
2023-10-31 07:17:58 +00:00
case 50:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 51:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 52:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
2023-10-31 07:17:58 +00:00
case 53:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_DASH_EQ);
2023-10-31 05:09:29 +00:00
END_STATE();
2023-10-31 09:51:37 +00:00
case 54:
2023-10-31 13:31:10 +00:00
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 55:
2023-10-31 05:09:29 +00:00
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'a') ADVANCE(1);
2023-10-21 20:38:20 +00:00
if (lookahead == 'b') ADVANCE(2);
2023-10-22 20:32:55 +00:00
if (lookahead == 'c') ADVANCE(3);
2023-10-22 20:50:09 +00:00
if (lookahead == 'd') ADVANCE(4);
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(5);
if (lookahead == 'f') ADVANCE(6);
if (lookahead == 'h') ADVANCE(7);
if (lookahead == 'i') ADVANCE(8);
if (lookahead == 'l') ADVANCE(9);
if (lookahead == 'm') ADVANCE(10);
if (lookahead == 'o') ADVANCE(11);
if (lookahead == 'r') ADVANCE(12);
if (lookahead == 's') ADVANCE(13);
if (lookahead == 't') ADVANCE(14);
if (lookahead == 'w') ADVANCE(15);
if (lookahead == 'z') ADVANCE(16);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
2023-10-31 09:51:37 +00:00
if (lookahead == 'p') ADVANCE(17);
if (lookahead == 's') ADVANCE(18);
END_STATE();
case 2:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(19);
END_STATE();
case 3:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 4:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(21);
END_STATE();
case 5:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(22);
END_STATE();
case 6:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(23);
if (lookahead == 'i') ADVANCE(24);
if (lookahead == 'o') ADVANCE(25);
if (lookahead == 'r') ADVANCE(26);
if (lookahead == 'u') ADVANCE(27);
END_STATE();
case 7:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(28);
END_STATE();
case 8:
2023-10-31 09:51:37 +00:00
if (lookahead == 'f') ADVANCE(29);
if (lookahead == 'n') ADVANCE(30);
END_STATE();
case 9:
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(31);
END_STATE();
case 10:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(32);
if (lookahead == 'e') ADVANCE(33);
if (lookahead == 'o') ADVANCE(34);
END_STATE();
case 11:
2023-10-31 09:51:37 +00:00
if (lookahead == 'u') ADVANCE(35);
END_STATE();
case 12:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(36);
2023-10-31 05:09:29 +00:00
if (lookahead == 'e') ADVANCE(37);
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(38);
END_STATE();
case 13:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(39);
if (lookahead == 'h') ADVANCE(40);
END_STATE();
case 14:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(41);
if (lookahead == 'o') ADVANCE(42);
if (lookahead == 'r') ADVANCE(43);
if (lookahead == 'y') ADVANCE(44);
END_STATE();
case 15:
2023-10-31 09:51:37 +00:00
if (lookahead == 'h') ADVANCE(45);
if (lookahead == 'o') ADVANCE(46);
if (lookahead == 'r') ADVANCE(47);
END_STATE();
case 16:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(48);
END_STATE();
case 17:
2023-10-31 09:51:37 +00:00
if (lookahead == 'p') ADVANCE(49);
END_STATE();
case 18:
2023-10-31 05:09:29 +00:00
if (lookahead == 's') ADVANCE(50);
2023-10-31 09:51:37 +00:00
if (lookahead == 'y') ADVANCE(51);
END_STATE();
case 19:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(52);
END_STATE();
case 20:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(53);
END_STATE();
case 21:
2023-10-31 09:51:37 +00:00
if (lookahead == 'w') ADVANCE(54);
END_STATE();
case 22:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(55);
END_STATE();
case 23:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(56);
END_STATE();
case 24:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(57);
if (lookahead == 'n') ADVANCE(58);
if (lookahead == 's') ADVANCE(59);
END_STATE();
case 25:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(60);
END_STATE();
case 26:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(61);
END_STATE();
case 27:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(62);
END_STATE();
case 28:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(63);
END_STATE();
case 29:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 30:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 's') ADVANCE(64);
if (lookahead == 't') ADVANCE(65);
END_STATE();
case 31:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(66);
END_STATE();
case 32:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(67);
END_STATE();
case 33:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(68);
END_STATE();
case 34:
2023-10-31 09:51:37 +00:00
if (lookahead == 'v') ADVANCE(69);
END_STATE();
case 35:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(70);
END_STATE();
case 36:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(71);
if (lookahead == 'w') ADVANCE(72);
END_STATE();
case 37:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(73);
if (lookahead == 'd') ADVANCE(74);
if (lookahead == 'm') ADVANCE(75);
if (lookahead == 'v') ADVANCE(76);
END_STATE();
case 38:
2023-10-31 09:51:37 +00:00
if (lookahead == 'w') ADVANCE(77);
END_STATE();
case 39:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(78);
END_STATE();
case 40:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 41:
2023-10-31 09:51:37 +00:00
if (lookahead == 'b') ADVANCE(79);
END_STATE();
case 42:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_to);
if (lookahead == '_') ADVANCE(80);
END_STATE();
case 43:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(81);
if (lookahead == 'u') ADVANCE(82);
END_STATE();
case 44:
2023-10-31 09:51:37 +00:00
if (lookahead == 'p') ADVANCE(83);
END_STATE();
case 45:
2023-10-31 09:51:37 +00:00
if (lookahead == 'i') ADVANCE(84);
END_STATE();
case 46:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(85);
END_STATE();
case 47:
2023-10-31 09:51:37 +00:00
if (lookahead == 'i') ADVANCE(86);
END_STATE();
case 48:
2023-10-31 09:51:37 +00:00
if (lookahead == 'h') ADVANCE(87);
END_STATE();
case 49:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(88);
END_STATE();
case 50:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(89);
END_STATE();
case 51:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(90);
END_STATE();
case 52:
2023-10-31 09:51:37 +00:00
if (lookahead == 'h') ADVANCE(91);
END_STATE();
case 53:
2023-10-31 09:51:37 +00:00
if (lookahead == 'u') ADVANCE(92);
END_STATE();
case 54:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(93);
END_STATE();
case 55:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(94);
END_STATE();
case 56:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(95);
END_STATE();
case 57:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(96);
END_STATE();
case 58:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(97);
END_STATE();
case 59:
2023-10-31 09:51:37 +00:00
if (lookahead == 'h') ADVANCE(98);
END_STATE();
case 60:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 61:
2023-10-31 09:51:37 +00:00
if (lookahead == 'm') ADVANCE(99);
END_STATE();
case 62:
2023-10-31 09:51:37 +00:00
if (lookahead == 'c') ADVANCE(100);
END_STATE();
case 63:
2023-10-31 09:51:37 +00:00
if (lookahead == 'p') ADVANCE(101);
END_STATE();
case 64:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(102);
END_STATE();
case 65:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(103);
END_STATE();
case 66:
2023-10-31 09:51:37 +00:00
if (lookahead == 'g') ADVANCE(104);
END_STATE();
case 67:
2023-10-31 09:51:37 +00:00
if (lookahead == 'c') ADVANCE(105);
END_STATE();
case 68:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(106);
END_STATE();
case 69:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(107);
END_STATE();
case 70:
2023-10-31 09:51:37 +00:00
if (lookahead == 'p') ADVANCE(108);
END_STATE();
case 71:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(109);
END_STATE();
case 72:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 73:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(110);
END_STATE();
case 74:
2023-10-31 09:51:37 +00:00
if (lookahead == 'u') ADVANCE(111);
END_STATE();
case 75:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(112);
END_STATE();
case 76:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(113);
END_STATE();
case 77:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(114);
2023-10-21 17:19:01 +00:00
END_STATE();
case 78:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(115);
2023-10-21 17:19:01 +00:00
END_STATE();
case 79:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(116);
2023-10-21 17:19:01 +00:00
END_STATE();
case 80:
2023-10-31 09:51:37 +00:00
if (lookahead == 'f') ADVANCE(117);
if (lookahead == 'j') ADVANCE(118);
if (lookahead == 's') ADVANCE(119);
2023-10-21 17:19:01 +00:00
END_STATE();
case 81:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(120);
2023-10-21 17:19:01 +00:00
END_STATE();
case 82:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(121);
2023-10-21 17:19:01 +00:00
END_STATE();
case 83:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(122);
2023-10-21 17:19:01 +00:00
END_STATE();
case 84:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(123);
2023-10-21 17:19:01 +00:00
END_STATE();
case 85:
2023-10-31 09:51:37 +00:00
if (lookahead == 'k') ADVANCE(124);
2023-10-21 17:19:01 +00:00
END_STATE();
case 86:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(125);
2023-10-21 17:19:01 +00:00
END_STATE();
case 87:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
2023-10-21 17:19:01 +00:00
END_STATE();
case 88:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(126);
2023-10-21 17:19:01 +00:00
END_STATE();
case 89:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(127);
2023-10-21 17:19:01 +00:00
END_STATE();
case 90:
2023-10-31 09:51:37 +00:00
if (lookahead == 'c') ADVANCE(128);
2023-10-21 17:19:01 +00:00
END_STATE();
case 91:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_bash);
2023-10-21 17:19:01 +00:00
END_STATE();
case 92:
2023-10-31 09:51:37 +00:00
if (lookahead == 'm') ADVANCE(129);
2023-10-21 17:19:01 +00:00
END_STATE();
case 93:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(130);
2023-10-21 17:19:01 +00:00
END_STATE();
case 94:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_else);
2023-10-21 17:19:01 +00:00
END_STATE();
case 95:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(131);
2023-10-21 17:19:01 +00:00
END_STATE();
case 96:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(132);
2023-10-21 17:19:01 +00:00
END_STATE();
case 97:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_find);
2023-10-21 17:19:01 +00:00
END_STATE();
case 98:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_fish);
2023-10-21 17:19:01 +00:00
END_STATE();
case 99:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(133);
2023-10-21 17:19:01 +00:00
END_STATE();
case 100:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(134);
2023-10-21 17:19:01 +00:00
END_STATE();
case 101:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_help);
END_STATE();
2023-10-21 17:19:01 +00:00
case 102:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(135);
2023-10-21 17:19:01 +00:00
END_STATE();
case 103:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_into);
2023-10-21 17:19:01 +00:00
END_STATE();
case 104:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(136);
2023-10-21 17:19:01 +00:00
END_STATE();
case 105:
2023-10-31 09:51:37 +00:00
if (lookahead == 'h') ADVANCE(137);
2023-10-21 17:19:01 +00:00
END_STATE();
case 106:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(138);
2023-10-21 17:19:01 +00:00
END_STATE();
case 107:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_move);
2023-10-21 20:38:20 +00:00
END_STATE();
case 108:
2023-10-31 09:51:37 +00:00
if (lookahead == 'u') ADVANCE(139);
2023-10-21 20:38:20 +00:00
END_STATE();
case 109:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(140);
2023-10-21 20:38:20 +00:00
END_STATE();
case 110:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_read);
2023-10-21 20:38:20 +00:00
END_STATE();
case 111:
2023-10-31 09:51:37 +00:00
if (lookahead == 'c') ADVANCE(141);
2023-10-21 20:38:20 +00:00
END_STATE();
case 112:
2023-10-31 09:51:37 +00:00
if (lookahead == 'v') ADVANCE(142);
2023-10-21 20:38:20 +00:00
END_STATE();
case 113:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(143);
2023-10-21 20:38:20 +00:00
END_STATE();
case 114:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_rows);
2023-10-21 20:38:20 +00:00
END_STATE();
case 115:
2023-10-31 09:51:37 +00:00
if (lookahead == 'c') ADVANCE(144);
2023-10-21 20:38:20 +00:00
END_STATE();
case 116:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(145);
2023-10-21 20:38:20 +00:00
END_STATE();
case 117:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(146);
2023-10-21 20:38:20 +00:00
END_STATE();
case 118:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(147);
2023-10-21 20:38:20 +00:00
END_STATE();
case 119:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(148);
2023-10-21 20:38:20 +00:00
END_STATE();
case 120:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(149);
2023-10-21 20:38:20 +00:00
END_STATE();
case 121:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_true);
2023-10-21 20:38:20 +00:00
END_STATE();
case 122:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_type);
2023-10-21 20:38:20 +00:00
END_STATE();
case 123:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(150);
2023-10-21 20:38:20 +00:00
END_STATE();
case 124:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(151);
2023-10-21 20:38:20 +00:00
END_STATE();
case 125:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(152);
2023-10-21 20:38:20 +00:00
END_STATE();
case 126:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(153);
2023-10-21 20:38:20 +00:00
END_STATE();
case 127:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(154);
2023-10-21 20:38:20 +00:00
END_STATE();
case 128:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_async);
2023-10-21 20:38:20 +00:00
END_STATE();
case 129:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(155);
2023-10-21 20:38:20 +00:00
END_STATE();
case 130:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(156);
2023-10-21 20:38:20 +00:00
END_STATE();
case 131:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_false);
2023-10-21 20:38:20 +00:00
END_STATE();
case 132:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(157);
2023-10-21 20:38:20 +00:00
END_STATE();
case 133:
2023-10-31 09:51:37 +00:00
if (lookahead == 'j') ADVANCE(158);
2023-10-21 20:38:20 +00:00
END_STATE();
case 134:
2023-10-31 09:51:37 +00:00
if (lookahead == 'i') ADVANCE(159);
2023-10-21 20:38:20 +00:00
END_STATE();
case 135:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(160);
2023-10-21 20:38:20 +00:00
END_STATE();
case 136:
2023-10-31 09:51:37 +00:00
if (lookahead == 'h') ADVANCE(161);
2023-10-21 20:38:20 +00:00
END_STATE();
case 137:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_match);
2023-10-21 20:38:20 +00:00
END_STATE();
case 138:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(162);
2023-10-21 20:38:20 +00:00
END_STATE();
case 139:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(163);
2023-10-21 20:38:20 +00:00
END_STATE();
case 140:
2023-10-31 09:51:37 +00:00
if (lookahead == 'm') ADVANCE(164);
2023-10-21 20:38:20 +00:00
END_STATE();
case 141:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(165);
2023-10-21 20:38:20 +00:00
END_STATE();
case 142:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(166);
2023-10-21 20:38:20 +00:00
END_STATE();
case 143:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(167);
2023-10-21 20:38:20 +00:00
END_STATE();
case 144:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(168);
2023-10-21 20:38:20 +00:00
END_STATE();
case 145:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_table);
2023-10-21 20:38:20 +00:00
END_STATE();
case 146:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(169);
2023-10-21 20:38:20 +00:00
END_STATE();
case 147:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(170);
2023-10-21 20:38:20 +00:00
END_STATE();
case 148:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(171);
2023-10-21 20:38:20 +00:00
END_STATE();
case 149:
2023-10-31 09:51:37 +00:00
if (lookahead == 'f') ADVANCE(172);
2023-10-21 20:38:20 +00:00
END_STATE();
case 150:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_while);
2023-10-21 20:38:20 +00:00
END_STATE();
case 151:
2023-10-31 09:51:37 +00:00
if (lookahead == 'i') ADVANCE(173);
2023-10-21 20:38:20 +00:00
END_STATE();
case 152:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_write);
2023-10-21 20:38:20 +00:00
END_STATE();
case 153:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_append);
2023-10-22 18:27:18 +00:00
END_STATE();
case 154:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(174);
2023-10-22 18:27:18 +00:00
END_STATE();
case 155:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(175);
2023-10-22 18:27:18 +00:00
END_STATE();
case 156:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(176);
2023-10-22 18:48:34 +00:00
END_STATE();
case 157:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_filter);
2023-10-22 18:48:34 +00:00
END_STATE();
case 158:
2023-10-31 09:51:37 +00:00
if (lookahead == 's') ADVANCE(177);
2023-10-22 18:48:34 +00:00
END_STATE();
case 159:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(178);
2023-10-22 18:48:34 +00:00
END_STATE();
case 160:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_insert);
2023-10-22 18:48:34 +00:00
END_STATE();
case 161:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_length);
2023-10-22 18:48:34 +00:00
END_STATE();
case 162:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(179);
2023-10-22 18:48:34 +00:00
END_STATE();
case 163:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(180);
2023-10-22 18:48:34 +00:00
END_STATE();
case 164:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(181);
2023-10-22 18:48:34 +00:00
END_STATE();
case 165:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_reduce);
2023-10-22 18:48:34 +00:00
END_STATE();
case 166:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_remove);
2023-10-22 18:48:34 +00:00
END_STATE();
case 167:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(182);
2023-10-22 18:48:34 +00:00
END_STATE();
case 168:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_select);
2023-10-22 18:48:34 +00:00
END_STATE();
case 169:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(183);
2023-10-22 18:48:34 +00:00
END_STATE();
case 170:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(184);
2023-10-22 18:48:34 +00:00
END_STATE();
case 171:
2023-10-31 09:51:37 +00:00
if (lookahead == 'i') ADVANCE(185);
2023-10-22 18:48:34 +00:00
END_STATE();
case 172:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(186);
2023-10-22 18:48:34 +00:00
END_STATE();
case 173:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(187);
2023-10-21 17:19:01 +00:00
END_STATE();
2023-10-22 18:48:34 +00:00
case 174:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(188);
2023-10-22 18:48:34 +00:00
END_STATE();
case 175:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_columns);
2023-10-22 18:48:34 +00:00
END_STATE();
case 176:
2023-10-31 09:51:37 +00:00
if (lookahead == 'd') ADVANCE(189);
2023-10-22 18:48:34 +00:00
END_STATE();
case 177:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(190);
2023-10-22 18:48:34 +00:00
END_STATE();
case 178:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(191);
2023-10-22 18:48:34 +00:00
END_STATE();
case 179:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(192);
2023-10-22 18:48:34 +00:00
END_STATE();
case 180:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(193);
2023-10-22 20:32:55 +00:00
END_STATE();
case 181:
2023-10-31 09:51:37 +00:00
if (lookahead == 'b') ADVANCE(194);
if (lookahead == 'f') ADVANCE(195);
if (lookahead == 'i') ADVANCE(196);
2023-10-22 20:32:55 +00:00
END_STATE();
case 182:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_reverse);
2023-10-22 20:32:55 +00:00
END_STATE();
case 183:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(197);
2023-10-22 20:32:55 +00:00
END_STATE();
case 184:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
2023-10-22 20:32:55 +00:00
END_STATE();
case 185:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(198);
2023-10-22 20:32:55 +00:00
END_STATE();
case 186:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(199);
2023-10-22 20:32:55 +00:00
END_STATE();
case 187:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_workdir);
2023-10-22 20:32:55 +00:00
END_STATE();
case 188:
2023-10-31 09:51:37 +00:00
if (lookahead == 'q') ADVANCE(200);
2023-10-22 20:32:55 +00:00
END_STATE();
case 189:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_download);
2023-10-22 20:32:55 +00:00
END_STATE();
case 190:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(201);
2023-10-22 20:41:37 +00:00
END_STATE();
case 191:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_function);
2023-10-22 20:41:37 +00:00
END_STATE();
case 192:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_metadata);
2023-10-22 20:41:37 +00:00
END_STATE();
case 193:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(202);
2023-10-22 20:41:37 +00:00
END_STATE();
case 194:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(203);
2023-10-22 20:41:37 +00:00
END_STATE();
case 195:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(204);
2023-10-22 20:41:37 +00:00
END_STATE();
case 196:
2023-10-31 09:51:37 +00:00
if (lookahead == 'n') ADVANCE(205);
2023-10-22 20:50:09 +00:00
END_STATE();
case 197:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_to_float);
2023-10-22 20:50:09 +00:00
END_STATE();
case 198:
2023-10-31 09:51:37 +00:00
if (lookahead == 'g') ADVANCE(206);
2023-10-22 20:50:09 +00:00
END_STATE();
case 199:
2023-10-31 09:51:37 +00:00
if (lookahead == 'm') ADVANCE(207);
2023-10-22 20:50:09 +00:00
END_STATE();
case 200:
2023-10-31 09:51:37 +00:00
if (lookahead == 'u') ADVANCE(208);
2023-10-22 20:50:09 +00:00
END_STATE();
case 201:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
2023-10-22 20:50:09 +00:00
END_STATE();
case 202:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(209);
2023-10-22 20:50:09 +00:00
END_STATE();
case 203:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(210);
2023-10-22 20:50:09 +00:00
END_STATE();
case 204:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(211);
2023-10-28 14:28:43 +00:00
END_STATE();
case 205:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(212);
2023-10-28 14:28:43 +00:00
END_STATE();
case 206:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_to_string);
2023-10-28 14:28:43 +00:00
END_STATE();
case 207:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_transform);
2023-10-28 14:28:43 +00:00
END_STATE();
case 208:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(213);
2023-10-28 14:28:43 +00:00
END_STATE();
case 209:
2023-10-31 09:51:37 +00:00
if (lookahead == 'o') ADVANCE(214);
2023-10-28 14:28:43 +00:00
END_STATE();
case 210:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(215);
2023-10-28 14:28:43 +00:00
END_STATE();
case 211:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(216);
2023-10-28 14:28:43 +00:00
END_STATE();
case 212:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(217);
2023-10-28 14:28:43 +00:00
END_STATE();
case 213:
2023-10-31 09:51:37 +00:00
if (lookahead == 'l') ADVANCE(218);
2023-10-28 14:28:43 +00:00
END_STATE();
case 214:
2023-10-31 09:51:37 +00:00
if (lookahead == 'r') ADVANCE(219);
2023-10-31 05:09:29 +00:00
END_STATE();
case 215:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(220);
2023-10-31 05:09:29 +00:00
END_STATE();
case 216:
2023-10-31 09:51:37 +00:00
if (lookahead == 't') ADVANCE(221);
2023-10-31 05:09:29 +00:00
END_STATE();
case 217:
2023-10-31 09:51:37 +00:00
if (lookahead == 'g') ADVANCE(222);
2023-10-31 05:09:29 +00:00
END_STATE();
case 218:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_assert_equal);
2023-10-31 05:09:29 +00:00
END_STATE();
case 219:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_output_error);
2023-10-31 05:09:29 +00:00
END_STATE();
case 220:
2023-10-31 09:51:37 +00:00
if (lookahead == 'a') ADVANCE(223);
2023-10-31 05:09:29 +00:00
END_STATE();
case 221:
2023-10-31 09:51:37 +00:00
ACCEPT_TOKEN(anon_sym_random_float);
2023-10-31 05:09:29 +00:00
END_STATE();
case 222:
2023-10-31 09:51:37 +00:00
if (lookahead == 'e') ADVANCE(224);
END_STATE();
case 223:
if (lookahead == 'n') ADVANCE(225);
END_STATE();
case 224:
if (lookahead == 'r') ADVANCE(226);
END_STATE();
case 225:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 226:
2023-10-22 18:48:34 +00:00
ACCEPT_TOKEN(anon_sym_random_integer);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
2023-10-31 13:31:10 +00:00
[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},
[30] = {.lex_state = 14},
[31] = {.lex_state = 14},
[32] = {.lex_state = 14},
[33] = {.lex_state = 14},
[34] = {.lex_state = 14},
[35] = {.lex_state = 14},
[36] = {.lex_state = 14},
[37] = {.lex_state = 14},
[38] = {.lex_state = 14},
[39] = {.lex_state = 14},
[40] = {.lex_state = 14},
[41] = {.lex_state = 14},
[42] = {.lex_state = 14},
[43] = {.lex_state = 14},
[44] = {.lex_state = 14},
[45] = {.lex_state = 14},
[46] = {.lex_state = 14},
[47] = {.lex_state = 14},
[48] = {.lex_state = 14},
[49] = {.lex_state = 14},
[50] = {.lex_state = 14},
[51] = {.lex_state = 14},
[52] = {.lex_state = 14},
[53] = {.lex_state = 14},
[54] = {.lex_state = 14},
[55] = {.lex_state = 14},
[56] = {.lex_state = 14},
[57] = {.lex_state = 14},
[58] = {.lex_state = 14},
[59] = {.lex_state = 14},
[60] = {.lex_state = 14},
[61] = {.lex_state = 14},
[62] = {.lex_state = 14},
[63] = {.lex_state = 14},
[64] = {.lex_state = 14},
[65] = {.lex_state = 14},
[66] = {.lex_state = 14},
[67] = {.lex_state = 14},
[68] = {.lex_state = 0},
[69] = {.lex_state = 0},
2023-10-31 10:21:21 +00:00
[70] = {.lex_state = 0},
2023-10-31 13:31:10 +00:00
[71] = {.lex_state = 14},
[72] = {.lex_state = 14},
[73] = {.lex_state = 0},
[74] = {.lex_state = 14},
[75] = {.lex_state = 0},
[76] = {.lex_state = 14},
[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},
[110] = {.lex_state = 14},
[111] = {.lex_state = 14},
[112] = {.lex_state = 14},
[113] = {.lex_state = 14},
[114] = {.lex_state = 14},
[115] = {.lex_state = 14},
[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 = 14},
[124] = {.lex_state = 14},
[125] = {.lex_state = 14},
[126] = {.lex_state = 14},
[127] = {.lex_state = 14},
[128] = {.lex_state = 14},
[129] = {.lex_state = 14},
[130] = {.lex_state = 14},
[131] = {.lex_state = 14},
[132] = {.lex_state = 14},
[133] = {.lex_state = 14},
[134] = {.lex_state = 14},
[135] = {.lex_state = 14},
[136] = {.lex_state = 14},
[137] = {.lex_state = 14},
[138] = {.lex_state = 14},
[139] = {.lex_state = 14},
[140] = {.lex_state = 14},
[141] = {.lex_state = 14},
[142] = {.lex_state = 14},
[143] = {.lex_state = 14},
[144] = {.lex_state = 14},
[145] = {.lex_state = 14},
[146] = {.lex_state = 14},
[147] = {.lex_state = 14},
[148] = {.lex_state = 14},
[149] = {.lex_state = 14},
[150] = {.lex_state = 14},
[151] = {.lex_state = 14},
[152] = {.lex_state = 14},
[153] = {.lex_state = 14},
[154] = {.lex_state = 14},
[155] = {.lex_state = 14},
[156] = {.lex_state = 14},
[157] = {.lex_state = 14},
[158] = {.lex_state = 14},
[159] = {.lex_state = 14},
[160] = {.lex_state = 14},
[161] = {.lex_state = 14},
[162] = {.lex_state = 14},
[163] = {.lex_state = 14},
[164] = {.lex_state = 14},
[165] = {.lex_state = 14},
[166] = {.lex_state = 14},
[167] = {.lex_state = 14},
[168] = {.lex_state = 14},
[169] = {.lex_state = 14},
[170] = {.lex_state = 14},
[171] = {.lex_state = 14},
[172] = {.lex_state = 14},
[173] = {.lex_state = 14},
[174] = {.lex_state = 14},
[175] = {.lex_state = 14},
[176] = {.lex_state = 14},
[177] = {.lex_state = 14},
[178] = {.lex_state = 14},
[179] = {.lex_state = 14},
[180] = {.lex_state = 14},
[181] = {.lex_state = 14},
[182] = {.lex_state = 14},
[183] = {.lex_state = 14},
[184] = {.lex_state = 14},
[185] = {.lex_state = 14},
[186] = {.lex_state = 14},
[187] = {.lex_state = 14},
[188] = {.lex_state = 14},
[189] = {.lex_state = 14},
[190] = {.lex_state = 14},
[191] = {.lex_state = 14},
[192] = {.lex_state = 14},
[193] = {.lex_state = 14},
[194] = {.lex_state = 14},
[195] = {.lex_state = 14},
[196] = {.lex_state = 14},
[197] = {.lex_state = 14},
[198] = {.lex_state = 14},
[199] = {.lex_state = 14},
[200] = {.lex_state = 14},
[201] = {.lex_state = 14},
[202] = {.lex_state = 14},
[203] = {.lex_state = 1},
[204] = {.lex_state = 1},
[205] = {.lex_state = 14},
[206] = {.lex_state = 1},
[207] = {.lex_state = 1},
[208] = {.lex_state = 1},
[209] = {.lex_state = 1},
[210] = {.lex_state = 1},
[211] = {.lex_state = 1},
[212] = {.lex_state = 1},
[213] = {.lex_state = 1},
[214] = {.lex_state = 1},
[215] = {.lex_state = 1},
[216] = {.lex_state = 1},
[217] = {.lex_state = 1},
[218] = {.lex_state = 1},
[219] = {.lex_state = 1},
[220] = {.lex_state = 1},
[221] = {.lex_state = 1},
[222] = {.lex_state = 1},
[223] = {.lex_state = 1},
[224] = {.lex_state = 1},
[225] = {.lex_state = 1},
[226] = {.lex_state = 1},
[227] = {.lex_state = 1},
[228] = {.lex_state = 1},
[229] = {.lex_state = 1},
[230] = {.lex_state = 1},
[231] = {.lex_state = 1},
[232] = {.lex_state = 1},
[233] = {.lex_state = 1},
[234] = {.lex_state = 1},
[235] = {.lex_state = 1},
2023-10-31 10:21:21 +00:00
[236] = {.lex_state = 1},
2023-10-31 13:31:10 +00:00
[237] = {.lex_state = 1},
[238] = {.lex_state = 1},
[239] = {.lex_state = 1},
[240] = {.lex_state = 1},
[241] = {.lex_state = 1},
[242] = {.lex_state = 1},
[243] = {.lex_state = 1},
[244] = {.lex_state = 1},
[245] = {.lex_state = 14},
[246] = {.lex_state = 14},
[247] = {.lex_state = 14},
[248] = {.lex_state = 14},
[249] = {.lex_state = 14},
[250] = {.lex_state = 14},
[251] = {.lex_state = 14},
[252] = {.lex_state = 14},
[253] = {.lex_state = 14},
[254] = {.lex_state = 14},
[255] = {.lex_state = 14},
[256] = {.lex_state = 14},
[257] = {.lex_state = 14},
[258] = {.lex_state = 14},
[259] = {.lex_state = 14},
[260] = {.lex_state = 14},
[261] = {.lex_state = 14},
[262] = {.lex_state = 14},
[263] = {.lex_state = 14},
[264] = {.lex_state = 14},
[265] = {.lex_state = 14},
[266] = {.lex_state = 14},
[267] = {.lex_state = 14},
[268] = {.lex_state = 14},
[269] = {.lex_state = 14},
[270] = {.lex_state = 14},
[271] = {.lex_state = 14},
[272] = {.lex_state = 14},
[273] = {.lex_state = 14},
[274] = {.lex_state = 14},
[275] = {.lex_state = 14},
[276] = {.lex_state = 14},
[277] = {.lex_state = 14},
[278] = {.lex_state = 14},
[279] = {.lex_state = 14},
[280] = {.lex_state = 14},
[281] = {.lex_state = 14},
[282] = {.lex_state = 14},
[283] = {.lex_state = 0},
[284] = {.lex_state = 14},
[285] = {.lex_state = 14},
[286] = {.lex_state = 14},
[287] = {.lex_state = 0},
[288] = {.lex_state = 14},
[289] = {.lex_state = 14},
[290] = {.lex_state = 14},
[291] = {.lex_state = 14},
[292] = {.lex_state = 14},
[293] = {.lex_state = 14},
[294] = {.lex_state = 14},
[295] = {.lex_state = 14},
[296] = {.lex_state = 14},
[297] = {.lex_state = 0},
[298] = {.lex_state = 0},
[299] = {.lex_state = 14},
[300] = {.lex_state = 14},
[301] = {.lex_state = 14},
[302] = {.lex_state = 14},
[303] = {.lex_state = 0},
[304] = {.lex_state = 14},
[305] = {.lex_state = 14},
[306] = {.lex_state = 0},
[307] = {.lex_state = 14},
[308] = {.lex_state = 14},
[309] = {.lex_state = 14},
[310] = {.lex_state = 14},
[311] = {.lex_state = 14},
[312] = {.lex_state = 14},
[313] = {.lex_state = 0},
[314] = {.lex_state = 14},
[315] = {.lex_state = 0},
[316] = {.lex_state = 14},
[317] = {.lex_state = 14},
[318] = {.lex_state = 14},
[319] = {.lex_state = 14},
[320] = {.lex_state = 0},
[321] = {.lex_state = 14},
[322] = {.lex_state = 14},
[323] = {.lex_state = 0},
[324] = {.lex_state = 14},
[325] = {.lex_state = 14},
[326] = {.lex_state = 14},
[327] = {.lex_state = 14},
[328] = {.lex_state = 14},
[329] = {.lex_state = 14},
[330] = {.lex_state = 14},
[331] = {.lex_state = 0},
[332] = {.lex_state = 14},
[333] = {.lex_state = 14},
[334] = {.lex_state = 14},
[335] = {.lex_state = 14},
[336] = {.lex_state = 14},
[337] = {.lex_state = 14},
[338] = {.lex_state = 0},
[339] = {.lex_state = 14},
[340] = {.lex_state = 0},
[341] = {.lex_state = 14},
[342] = {.lex_state = 14},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
2023-10-31 07:17:58 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 05:09:29 +00:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = ACTIONS(1),
[aux_sym_float_token1] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
2023-10-31 09:51:37 +00:00
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
2023-10-29 23:31:06 +00:00
[anon_sym_DOT_DOT] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
2023-10-31 13:31:10 +00:00
[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),
2023-10-31 05:09:29 +00:00
[anon_sym_match] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_transform] = ACTIONS(1),
[anon_sym_filter] = ACTIONS(1),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(1),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
2023-10-31 05:09:29 +00:00
[anon_sym_reduce] = ACTIONS(1),
[anon_sym_to] = ACTIONS(1),
[anon_sym_select] = ACTIONS(1),
[anon_sym_insert] = ACTIONS(1),
[anon_sym_into] = ACTIONS(1),
[anon_sym_async] = ACTIONS(1),
2023-10-21 17:04:17 +00:00
[anon_sym_assert] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_assert_equal] = ACTIONS(1),
2023-10-22 20:50:09 +00:00
[anon_sym_download] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_help] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_length] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_output] = ACTIONS(1),
[anon_sym_output_error] = ACTIONS(1),
2023-10-22 18:27:18 +00:00
[anon_sym_type] = ACTIONS(1),
2023-10-22 20:41:37 +00:00
[anon_sym_workdir] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_append] = ACTIONS(1),
[anon_sym_metadata] = ACTIONS(1),
[anon_sym_move] = ACTIONS(1),
2023-10-21 17:19:01 +00:00
[anon_sym_read] = ACTIONS(1),
[anon_sym_write] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_from_json] = ACTIONS(1),
[anon_sym_to_json] = ACTIONS(1),
[anon_sym_to_string] = ACTIONS(1),
2023-10-28 14:28:43 +00:00
[anon_sym_to_float] = ACTIONS(1),
2023-10-21 20:38:20 +00:00
[anon_sym_bash] = ACTIONS(1),
[anon_sym_fish] = ACTIONS(1),
[anon_sym_raw] = ACTIONS(1),
[anon_sym_sh] = ACTIONS(1),
[anon_sym_zsh] = ACTIONS(1),
2023-10-22 18:48:34 +00:00
[anon_sym_random] = ACTIONS(1),
[anon_sym_random_boolean] = ACTIONS(1),
[anon_sym_random_float] = ACTIONS(1),
[anon_sym_random_integer] = ACTIONS(1),
2023-10-22 20:32:55 +00:00
[anon_sym_columns] = ACTIONS(1),
2023-10-22 20:41:37 +00:00
[anon_sym_rows] = ACTIONS(1),
2023-10-28 14:28:43 +00:00
[anon_sym_reverse] = ACTIONS(1),
},
[1] = {
2023-10-31 13:31:10 +00:00
[sym_root] = STATE(331),
[sym_block] = STATE(36),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_logic] = STATE(120),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_root_repeat1] = STATE(36),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_function] = ACTIONS(21),
[anon_sym_table] = ACTIONS(23),
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
[2] = {
2023-10-31 13:31:10 +00:00
[sym_block] = STATE(100),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(168),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(197),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[ts_builtin_sym_end] = ACTIONS(49),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_RBRACE] = ACTIONS(49),
[anon_sym_LPAREN] = ACTIONS(9),
[anon_sym_RPAREN] = ACTIONS(49),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_COMMA] = ACTIONS(49),
[anon_sym_RBRACK] = ACTIONS(49),
[anon_sym_COLON] = ACTIONS(53),
[anon_sym_DOT_DOT] = ACTIONS(49),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_EQ_GT] = ACTIONS(49),
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
[3] = {
2023-10-31 13:31:10 +00:00
[sym_block] = STATE(96),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(168),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(197),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[ts_builtin_sym_end] = ACTIONS(87),
[sym_identifier] = ACTIONS(51),
2023-10-31 07:17:58 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
2023-10-31 13:31:10 +00:00
[anon_sym_RBRACE] = ACTIONS(87),
2023-10-31 05:09:29 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
2023-10-31 13:31:10 +00:00
[anon_sym_RPAREN] = ACTIONS(87),
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COMMA] = ACTIONS(87),
[anon_sym_RBRACK] = ACTIONS(87),
[anon_sym_COLON] = ACTIONS(53),
[anon_sym_DOT_DOT] = ACTIONS(87),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_EQ_GT] = ACTIONS(87),
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-21 17:04:17 +00:00
},
2023-10-31 09:51:37 +00:00
[4] = {
2023-10-31 13:31:10 +00:00
[sym_block] = STATE(100),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[ts_builtin_sym_end] = ACTIONS(49),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_RBRACE] = ACTIONS(49),
2023-10-31 09:51:37 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
2023-10-31 13:31:10 +00:00
[anon_sym_RPAREN] = ACTIONS(49),
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COMMA] = ACTIONS(49),
[anon_sym_RBRACK] = ACTIONS(49),
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_EQ_GT] = ACTIONS(49),
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
[5] = {
2023-10-31 13:31:10 +00:00
[sym_block] = STATE(96),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[ts_builtin_sym_end] = ACTIONS(87),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_RBRACE] = ACTIONS(87),
[anon_sym_LPAREN] = ACTIONS(9),
[anon_sym_RPAREN] = ACTIONS(87),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_COMMA] = ACTIONS(87),
[anon_sym_RBRACK] = ACTIONS(87),
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(21),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(23),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_EQ_GT] = ACTIONS(87),
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
[6] = {
2023-10-31 13:31:10 +00:00
[sym_statement] = STATE(6),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_logic] = STATE(120),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(6),
[ts_builtin_sym_end] = ACTIONS(111),
[sym_identifier] = ACTIONS(113),
2023-10-31 10:21:21 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(116),
[anon_sym_RBRACE] = ACTIONS(111),
[anon_sym_LPAREN] = ACTIONS(119),
[anon_sym_RPAREN] = ACTIONS(111),
[aux_sym_integer_token1] = ACTIONS(122),
[aux_sym_float_token1] = ACTIONS(125),
[sym_string] = ACTIONS(128),
[anon_sym_true] = ACTIONS(131),
[anon_sym_false] = ACTIONS(131),
[anon_sym_LBRACK] = ACTIONS(134),
[anon_sym_COMMA] = ACTIONS(111),
[anon_sym_RBRACK] = ACTIONS(111),
[anon_sym_COLON] = ACTIONS(111),
[anon_sym_DOT_DOT] = ACTIONS(111),
[anon_sym_function] = ACTIONS(137),
[anon_sym_LT] = ACTIONS(140),
[anon_sym_GT] = ACTIONS(140),
[anon_sym_table] = ACTIONS(142),
[anon_sym_PLUS] = ACTIONS(111),
[anon_sym_DASH] = ACTIONS(140),
[anon_sym_STAR] = ACTIONS(111),
[anon_sym_SLASH] = ACTIONS(111),
[anon_sym_PERCENT] = ACTIONS(111),
[anon_sym_EQ_EQ] = ACTIONS(111),
[anon_sym_BANG_EQ] = ACTIONS(111),
[anon_sym_AMP_AMP] = ACTIONS(111),
[anon_sym_PIPE_PIPE] = ACTIONS(111),
[anon_sym_GT_EQ] = ACTIONS(111),
[anon_sym_LT_EQ] = ACTIONS(111),
[anon_sym_if] = ACTIONS(145),
[anon_sym_match] = ACTIONS(148),
[anon_sym_EQ_GT] = ACTIONS(111),
[anon_sym_while] = ACTIONS(151),
[anon_sym_for] = ACTIONS(154),
[anon_sym_transform] = ACTIONS(157),
[anon_sym_filter] = ACTIONS(160),
[anon_sym_find] = ACTIONS(163),
[anon_sym_remove] = ACTIONS(166),
[anon_sym_reduce] = ACTIONS(169),
[anon_sym_select] = ACTIONS(172),
[anon_sym_insert] = ACTIONS(175),
[anon_sym_async] = ACTIONS(178),
2023-10-31 10:21:21 +00:00
},
[7] = {
2023-10-31 13:31:10 +00:00
[sym_statement] = STATE(6),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_logic] = STATE(120),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(6),
[ts_builtin_sym_end] = ACTIONS(181),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(183),
[anon_sym_RBRACE] = ACTIONS(181),
[anon_sym_LPAREN] = ACTIONS(9),
[anon_sym_RPAREN] = ACTIONS(181),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_COMMA] = ACTIONS(181),
[anon_sym_RBRACK] = ACTIONS(181),
[anon_sym_COLON] = ACTIONS(181),
[anon_sym_DOT_DOT] = ACTIONS(181),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(185),
[anon_sym_GT] = ACTIONS(185),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(181),
[anon_sym_DASH] = ACTIONS(185),
[anon_sym_STAR] = ACTIONS(181),
[anon_sym_SLASH] = ACTIONS(181),
[anon_sym_PERCENT] = ACTIONS(181),
[anon_sym_EQ_EQ] = ACTIONS(181),
[anon_sym_BANG_EQ] = ACTIONS(181),
[anon_sym_AMP_AMP] = ACTIONS(181),
[anon_sym_PIPE_PIPE] = ACTIONS(181),
[anon_sym_GT_EQ] = ACTIONS(181),
[anon_sym_LT_EQ] = ACTIONS(181),
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_EQ_GT] = ACTIONS(181),
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
},
[8] = {
[sym_statement] = STATE(8),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_logic] = STATE(120),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(8),
[ts_builtin_sym_end] = ACTIONS(111),
[sym_identifier] = ACTIONS(187),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(116),
[anon_sym_RBRACE] = ACTIONS(111),
[anon_sym_LPAREN] = ACTIONS(119),
[anon_sym_RPAREN] = ACTIONS(111),
[aux_sym_integer_token1] = ACTIONS(122),
[aux_sym_float_token1] = ACTIONS(125),
[sym_string] = ACTIONS(128),
[anon_sym_true] = ACTIONS(131),
[anon_sym_false] = ACTIONS(131),
[anon_sym_LBRACK] = ACTIONS(134),
[anon_sym_COMMA] = ACTIONS(111),
[anon_sym_RBRACK] = ACTIONS(111),
[anon_sym_COLON] = ACTIONS(111),
[anon_sym_function] = ACTIONS(190),
[anon_sym_LT] = ACTIONS(140),
[anon_sym_GT] = ACTIONS(140),
[anon_sym_table] = ACTIONS(193),
[anon_sym_PLUS] = ACTIONS(111),
[anon_sym_DASH] = ACTIONS(140),
[anon_sym_STAR] = ACTIONS(111),
[anon_sym_SLASH] = ACTIONS(111),
[anon_sym_PERCENT] = ACTIONS(111),
[anon_sym_EQ_EQ] = ACTIONS(111),
[anon_sym_BANG_EQ] = ACTIONS(111),
[anon_sym_AMP_AMP] = ACTIONS(111),
[anon_sym_PIPE_PIPE] = ACTIONS(111),
[anon_sym_GT_EQ] = ACTIONS(111),
[anon_sym_LT_EQ] = ACTIONS(111),
[anon_sym_if] = ACTIONS(145),
[anon_sym_match] = ACTIONS(148),
[anon_sym_EQ_GT] = ACTIONS(111),
[anon_sym_while] = ACTIONS(196),
[anon_sym_for] = ACTIONS(199),
[anon_sym_transform] = ACTIONS(202),
[anon_sym_filter] = ACTIONS(205),
[anon_sym_find] = ACTIONS(208),
[anon_sym_remove] = ACTIONS(211),
[anon_sym_reduce] = ACTIONS(214),
[anon_sym_select] = ACTIONS(217),
[anon_sym_insert] = ACTIONS(220),
[anon_sym_async] = ACTIONS(223),
},
[9] = {
[sym_statement] = STATE(8),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_logic] = STATE(120),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(8),
[ts_builtin_sym_end] = ACTIONS(181),
[sym_identifier] = ACTIONS(89),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(183),
[anon_sym_RBRACE] = ACTIONS(181),
2023-10-31 09:51:37 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
2023-10-31 13:31:10 +00:00
[anon_sym_RPAREN] = ACTIONS(181),
2023-10-31 09:51:37 +00:00
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COMMA] = ACTIONS(181),
[anon_sym_RBRACK] = ACTIONS(181),
[anon_sym_COLON] = ACTIONS(181),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(185),
[anon_sym_GT] = ACTIONS(185),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(181),
[anon_sym_DASH] = ACTIONS(185),
[anon_sym_STAR] = ACTIONS(181),
[anon_sym_SLASH] = ACTIONS(181),
[anon_sym_PERCENT] = ACTIONS(181),
[anon_sym_EQ_EQ] = ACTIONS(181),
[anon_sym_BANG_EQ] = ACTIONS(181),
[anon_sym_AMP_AMP] = ACTIONS(181),
[anon_sym_PIPE_PIPE] = ACTIONS(181),
[anon_sym_GT_EQ] = ACTIONS(181),
[anon_sym_LT_EQ] = ACTIONS(181),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_EQ_GT] = ACTIONS(181),
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[10] = {
[sym_block] = STATE(100),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
[ts_builtin_sym_end] = ACTIONS(49),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
2023-10-31 13:31:10 +00:00
[anon_sym_RBRACE] = ACTIONS(49),
2023-10-31 09:51:37 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[11] = {
[sym_block] = STATE(96),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
[ts_builtin_sym_end] = ACTIONS(87),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
2023-10-31 13:31:10 +00:00
[anon_sym_RBRACE] = ACTIONS(87),
2023-10-31 09:51:37 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[12] = {
[sym_block] = STATE(89),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 10:21:21 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(21),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(23),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 10:21:21 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 10:21:21 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 10:21:21 +00:00
},
2023-10-31 13:31:10 +00:00
[13] = {
[sym_block] = STATE(89),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
2023-10-31 09:51:37 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[14] = {
[sym_block] = STATE(95),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[15] = {
[sym_block] = STATE(89),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[16] = {
[sym_block] = STATE(102),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[17] = {
[sym_block] = STATE(106),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[18] = {
[sym_block] = STATE(90),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[19] = {
[sym_block] = STATE(113),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[20] = {
[sym_block] = STATE(115),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[21] = {
[sym_block] = STATE(116),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
},
[22] = {
[sym_block] = STATE(116),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[23] = {
[sym_block] = STATE(115),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[24] = {
[sym_block] = STATE(113),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[25] = {
[sym_block] = STATE(90),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[26] = {
[sym_block] = STATE(106),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[27] = {
[sym_block] = STATE(102),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 10:21:21 +00:00
[sym_identifier] = ACTIONS(5),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
2023-10-31 10:21:21 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 10:21:21 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 10:21:21 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[28] = {
[sym_block] = STATE(106),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[29] = {
[sym_block] = STATE(102),
[sym_statement] = STATE(9),
[sym_expression] = STATE(87),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(9),
[sym_identifier] = ACTIONS(89),
2023-10-31 09:51:37 +00:00
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
2023-10-31 13:31:10 +00:00
[anon_sym_while] = ACTIONS(93),
[anon_sym_for] = ACTIONS(95),
[anon_sym_transform] = ACTIONS(97),
[anon_sym_filter] = ACTIONS(99),
[anon_sym_find] = ACTIONS(101),
[anon_sym_remove] = ACTIONS(103),
[anon_sym_reduce] = ACTIONS(105),
[anon_sym_select] = ACTIONS(107),
2023-10-31 09:51:37 +00:00
[anon_sym_insert] = ACTIONS(45),
2023-10-31 13:31:10 +00:00
[anon_sym_async] = ACTIONS(109),
2023-10-31 09:51:37 +00:00
},
2023-10-31 13:31:10 +00:00
[30] = {
[sym_block] = STATE(90),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[31] = {
[sym_block] = STATE(95),
[sym_statement] = STATE(7),
[sym_expression] = STATE(77),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(7),
[sym_identifier] = ACTIONS(51),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_COLON] = ACTIONS(91),
[anon_sym_function] = ACTIONS(55),
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
[anon_sym_table] = ACTIONS(59),
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(67),
[anon_sym_for] = ACTIONS(69),
[anon_sym_transform] = ACTIONS(71),
[anon_sym_filter] = ACTIONS(73),
[anon_sym_find] = ACTIONS(75),
[anon_sym_remove] = ACTIONS(77),
[anon_sym_reduce] = ACTIONS(79),
[anon_sym_select] = ACTIONS(81),
[anon_sym_insert] = ACTIONS(83),
[anon_sym_async] = ACTIONS(85),
},
[32] = {
[sym_block] = STATE(113),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[33] = {
[sym_block] = STATE(115),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
2023-10-31 13:31:10 +00:00
[anon_sym_LBRACE] = ACTIONS(7),
2023-10-31 09:51:37 +00:00
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[34] = {
[sym_block] = STATE(116),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
2023-10-31 13:31:10 +00:00
[35] = {
[sym_block] = STATE(95),
[sym_statement] = STATE(45),
[sym_expression] = STATE(127),
[sym__expression_kind] = STATE(120),
[sym_value] = STATE(120),
[sym_integer] = STATE(107),
[sym_float] = STATE(107),
[sym_boolean] = STATE(107),
[sym_list] = STATE(107),
[sym_map] = STATE(107),
[sym_index] = STATE(120),
[sym_function] = STATE(107),
[sym_table] = STATE(107),
[sym_math] = STATE(120),
[sym_math_operator] = STATE(172),
[sym_logic] = STATE(120),
[sym_logic_operator] = STATE(199),
[sym_assignment] = STATE(118),
[sym_if_else] = STATE(118),
[sym_if] = STATE(68),
[sym_function_call] = STATE(120),
[sym_match] = STATE(118),
[sym_while] = STATE(118),
[sym_for] = STATE(118),
[sym_transform] = STATE(118),
[sym_filter] = STATE(118),
[sym_find] = STATE(118),
[sym_remove] = STATE(118),
[sym_reduce] = STATE(118),
[sym_select] = STATE(118),
[sym_insert] = STATE(118),
[sym_async] = STATE(118),
[sym_tool] = STATE(120),
[aux_sym_block_repeat1] = STATE(45),
2023-10-31 09:51:37 +00:00
[sym_identifier] = ACTIONS(5),
[sym_comment] = ACTIONS(3),
[anon_sym_LBRACE] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[aux_sym_integer_token1] = ACTIONS(11),
[aux_sym_float_token1] = ACTIONS(13),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
2023-10-31 13:31:10 +00:00
[anon_sym_COLON] = ACTIONS(91),
2023-10-31 09:51:37 +00:00
[anon_sym_function] = ACTIONS(21),
2023-10-31 13:31:10 +00:00
[anon_sym_LT] = ACTIONS(57),
[anon_sym_GT] = ACTIONS(57),
2023-10-31 09:51:37 +00:00
[anon_sym_table] = ACTIONS(23),
2023-10-31 13:31:10 +00:00
[anon_sym_PLUS] = ACTIONS(61),
[anon_sym_DASH] = ACTIONS(63),
[anon_sym_STAR] = ACTIONS(61),
[anon_sym_SLASH] = ACTIONS(61),
[anon_sym_PERCENT] = ACTIONS(61),
[anon_sym_EQ_EQ] = ACTIONS(65),
[anon_sym_BANG_EQ] = ACTIONS(65),
[anon_sym_AMP_AMP] = ACTIONS(65),
[anon_sym_PIPE_PIPE] = ACTIONS(65),
[anon_sym_GT_EQ] = ACTIONS(65),
[anon_sym_LT_EQ] = ACTIONS(65),
2023-10-31 09:51:37 +00:00
[anon_sym_if] = ACTIONS(25),
[anon_sym_match] = ACTIONS(27),
[anon_sym_while] = ACTIONS(29),
[anon_sym_for] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_async] = ACTIONS(47),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-31 13:31:10 +00:00
[0] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 09:51:37 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(226), 1,
ts_builtin_sym_end,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(38), 2,
sym_block,
aux_sym_root_repeat1,
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[121] = 16,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(228), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(246), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
STATE(144), 1,
2023-10-31 09:51:37 +00:00
sym__tool_kind,
2023-10-31 13:31:10 +00:00
STATE(242), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(243), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
ACTIONS(248), 30,
2023-10-31 09:51:37 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_workdir,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
2023-10-31 13:31:10 +00:00
[212] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(250), 1,
ts_builtin_sym_end,
ACTIONS(252), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(255), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(258), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(261), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(264), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(267), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(273), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(276), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(279), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(282), 1,
anon_sym_if,
ACTIONS(285), 1,
anon_sym_match,
ACTIONS(288), 1,
anon_sym_while,
ACTIONS(291), 1,
anon_sym_for,
ACTIONS(294), 1,
anon_sym_transform,
ACTIONS(297), 1,
anon_sym_filter,
ACTIONS(300), 1,
anon_sym_find,
ACTIONS(303), 1,
anon_sym_remove,
ACTIONS(306), 1,
anon_sym_reduce,
ACTIONS(309), 1,
anon_sym_select,
ACTIONS(312), 1,
anon_sym_insert,
ACTIONS(315), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(127), 1,
sym_expression,
ACTIONS(270), 2,
anon_sym_true,
anon_sym_false,
STATE(38), 2,
sym_block,
aux_sym_root_repeat1,
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[333] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(318), 1,
sym_identifier,
STATE(135), 1,
2023-10-31 09:51:37 +00:00
sym__tool_kind,
2023-10-31 13:31:10 +00:00
STATE(242), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(244), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
ACTIONS(320), 30,
2023-10-31 09:51:37 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_workdir,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
2023-10-31 13:31:10 +00:00
[424] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(183), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(322), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(324), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(262), 1,
aux_sym_map_repeat1,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(58), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[544] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 07:17:58 +00:00
ACTIONS(9), 1,
2023-10-21 20:38:20 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(183), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(322), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(324), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(262), 1,
aux_sym_map_repeat1,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(53), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[664] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 07:17:58 +00:00
ACTIONS(9), 1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
ACTIONS(326), 1,
anon_sym_LBRACE,
ACTIONS(328), 1,
anon_sym_LT,
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(225), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[784] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(116), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(119), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(122), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(125), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(128), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(134), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(145), 1,
anon_sym_if,
ACTIONS(148), 1,
anon_sym_match,
ACTIONS(190), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(193), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(220), 1,
anon_sym_insert,
ACTIONS(330), 1,
sym_identifier,
ACTIONS(333), 1,
anon_sym_while,
ACTIONS(336), 1,
anon_sym_for,
ACTIONS(339), 1,
anon_sym_transform,
ACTIONS(342), 1,
anon_sym_filter,
ACTIONS(345), 1,
anon_sym_find,
ACTIONS(348), 1,
anon_sym_remove,
ACTIONS(351), 1,
anon_sym_reduce,
ACTIONS(354), 1,
anon_sym_select,
ACTIONS(357), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(111), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(131), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(43), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[902] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
ACTIONS(360), 1,
anon_sym_LT,
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(92), 1,
sym_block,
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1022] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(183), 1,
anon_sym_LBRACE,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
ACTIONS(181), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
STATE(43), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1140] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
sym_identifier,
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
ACTIONS(326), 1,
anon_sym_LBRACE,
ACTIONS(362), 1,
anon_sym_LT,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(225), 1,
sym_block,
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1260] = 31,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
sym_identifier,
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
ACTIONS(364), 1,
anon_sym_LT,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(92), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1380] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(315), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1497] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
anon_sym_LBRACE,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
sym_identifier,
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(97), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
2023-10-21 20:38:20 +00:00
sym__expression_kind,
sym_value,
2023-10-29 23:31:06 +00:00
sym_index,
2023-10-21 20:38:20 +00:00
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1614] = 30,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
anon_sym_LBRACE,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(77), 1,
sym_expression,
STATE(110), 1,
sym_block,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1731] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-21 20:38:20 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-29 23:31:06 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
ACTIONS(326), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(216), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1848] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(298), 1,
sym_block,
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[1965] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(366), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-21 20:38:20 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(43), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2082] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(97), 1,
sym_block,
ACTIONS(17), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2199] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 10:21:21 +00:00
ACTIONS(9), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LPAREN,
2023-10-31 10:21:21 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 10:21:21 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 10:21:21 +00:00
ACTIONS(15), 1,
2023-10-31 09:51:37 +00:00
sym_string,
2023-10-31 10:21:21 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 10:21:21 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 10:21:21 +00:00
ACTIONS(23), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
ACTIONS(326), 1,
anon_sym_LBRACE,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(222), 1,
sym_block,
2023-10-31 10:21:21 +00:00
ACTIONS(17), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-31 09:51:37 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2316] = 30,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 10:21:21 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
sym_identifier,
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(117), 1,
sym_block,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-31 09:51:37 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2433] = 30,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(117), 1,
sym_block,
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2550] = 30,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(368), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(43), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2667] = 30,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_LBRACE,
2023-10-31 10:21:21 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 10:21:21 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 10:21:21 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 10:21:21 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 10:21:21 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 10:21:21 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 10:21:21 +00:00
ACTIONS(23), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(127), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(283), 1,
sym_block,
2023-10-31 10:21:21 +00:00
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2784] = 30,
2023-10-31 05:09:29 +00:00
ACTIONS(3), 1,
2023-10-31 07:17:58 +00:00
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 09:51:37 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 09:51:37 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 09:51:37 +00:00
ACTIONS(23), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(110), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[2901] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 09:51:37 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 09:51:37 +00:00
ACTIONS(21), 1,
anon_sym_function,
2023-10-31 09:51:37 +00:00
ACTIONS(23), 1,
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
2023-10-31 10:21:21 +00:00
STATE(68), 1,
2023-10-31 13:31:10 +00:00
sym_if,
STATE(127), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(246), 1,
sym_block,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3018] = 30,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(7), 1,
2023-10-31 10:21:21 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
STATE(68), 1,
sym_if,
STATE(97), 1,
sym_block,
STATE(127), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(45), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
2023-10-31 10:21:21 +00:00
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3135] = 30,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
ACTIONS(326), 1,
anon_sym_LBRACE,
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(222), 1,
sym_block,
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(7), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3252] = 30,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
sym_identifier,
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
ACTIONS(326), 1,
anon_sym_LBRACE,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(216), 1,
sym_block,
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(9), 2,
sym_statement,
aux_sym_block_repeat1,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3369] = 29,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-31 05:09:29 +00:00
sym_string,
2023-10-31 09:51:37 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(55), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-29 23:31:06 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(67), 1,
anon_sym_while,
ACTIONS(69), 1,
anon_sym_for,
ACTIONS(71), 1,
anon_sym_transform,
ACTIONS(73), 1,
anon_sym_filter,
ACTIONS(75), 1,
anon_sym_find,
ACTIONS(77), 1,
anon_sym_remove,
ACTIONS(79), 1,
anon_sym_reduce,
ACTIONS(81), 1,
anon_sym_select,
ACTIONS(83), 1,
anon_sym_insert,
ACTIONS(85), 1,
anon_sym_async,
ACTIONS(183), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
STATE(68), 1,
sym_if,
STATE(77), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(99), 1,
sym_statement,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3482] = 29,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(89), 1,
sym_identifier,
ACTIONS(93), 1,
anon_sym_while,
ACTIONS(95), 1,
anon_sym_for,
ACTIONS(97), 1,
anon_sym_transform,
ACTIONS(99), 1,
anon_sym_filter,
ACTIONS(101), 1,
anon_sym_find,
ACTIONS(103), 1,
anon_sym_remove,
ACTIONS(105), 1,
anon_sym_reduce,
ACTIONS(107), 1,
anon_sym_select,
ACTIONS(109), 1,
anon_sym_async,
ACTIONS(183), 1,
anon_sym_LBRACE,
STATE(68), 1,
sym_if,
STATE(87), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
STATE(99), 1,
sym_statement,
ACTIONS(17), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3595] = 29,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(5), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(25), 1,
anon_sym_if,
ACTIONS(27), 1,
anon_sym_match,
ACTIONS(29), 1,
anon_sym_while,
ACTIONS(31), 1,
anon_sym_for,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_async,
ACTIONS(183), 1,
anon_sym_LBRACE,
STATE(68), 1,
sym_if,
STATE(99), 1,
sym_statement,
STATE(127), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
STATE(118), 13,
sym_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
sym_async,
[3708] = 7,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(374), 1,
anon_sym_elseif,
ACTIONS(376), 1,
anon_sym_else,
STATE(104), 1,
sym_else,
STATE(69), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(372), 21,
sym_identifier,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(370), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[3773] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(374), 1,
anon_sym_elseif,
ACTIONS(376), 1,
anon_sym_else,
STATE(108), 1,
sym_else,
STATE(70), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(380), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(378), 23,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[3838] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(386), 1,
anon_sym_elseif,
STATE(70), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(384), 22,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
aux_sym_integer_token1,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(382), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[3898] = 6,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(393), 1,
anon_sym_EQ,
STATE(65), 1,
sym_assignment_operator,
ACTIONS(395), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(389), 22,
ts_builtin_sym_end,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RBRACE,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
anon_sym_RPAREN,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-28 14:28:43 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
ACTIONS(391), 22,
sym_identifier,
aux_sym_integer_token1,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3960] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(393), 1,
anon_sym_EQ,
STATE(66), 1,
sym_assignment_operator,
ACTIONS(395), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(389), 21,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
ACTIONS(391), 22,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4021] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(399), 22,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(397), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_elseif,
anon_sym_EQ_GT,
[4075] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(405), 1,
anon_sym_DOT_DOT,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(403), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(401), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4135] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(409), 22,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(407), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_elseif,
anon_sym_EQ_GT,
[4189] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(53), 1,
anon_sym_COLON,
ACTIONS(63), 1,
anon_sym_DASH,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(411), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(413), 18,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4257] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(417), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(415), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4315] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(421), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(419), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4373] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(425), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(423), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4431] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(403), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(401), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4489] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(429), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(427), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4547] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(53), 1,
anon_sym_COLON,
ACTIONS(63), 1,
anon_sym_DASH,
STATE(168), 1,
sym_math_operator,
STATE(197), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(431), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(433), 18,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4615] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(429), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(427), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4672] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(63), 1,
anon_sym_DASH,
ACTIONS(91), 1,
anon_sym_COLON,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(431), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_EQ_GT,
ACTIONS(433), 18,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4739] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(425), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(423), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4796] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(63), 1,
anon_sym_DASH,
ACTIONS(91), 1,
anon_sym_COLON,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(411), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_EQ_GT,
ACTIONS(413), 18,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4863] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(417), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(415), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4920] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(421), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(419), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[4977] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(437), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(435), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5029] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(441), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(439), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5081] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(445), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(443), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5133] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(449), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(447), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5185] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(453), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(451), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5237] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(457), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(455), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5289] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(461), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(459), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5341] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(465), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(463), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5393] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(469), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(467), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5445] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(473), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(471), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5497] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(477), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(475), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5549] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(479), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(87), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5601] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(483), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(481), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5653] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(487), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(485), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5705] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(491), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(489), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5757] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(380), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(378), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5809] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(495), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(493), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5861] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(499), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(497), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5913] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(503), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(501), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[5965] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(507), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(505), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6017] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(511), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(509), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6069] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(515), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(513), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6121] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(519), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(517), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6173] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(523), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(521), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6225] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(527), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(525), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6277] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(531), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(529), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6329] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(535), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(533), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6381] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(539), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(537), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6433] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(543), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(541), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6485] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(417), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(415), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6537] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(547), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(545), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6589] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(551), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(549), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6641] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(555), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(553), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6693] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(559), 21,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
ACTIONS(557), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[6745] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(393), 1,
anon_sym_EQ,
STATE(67), 1,
sym_assignment_operator,
ACTIONS(395), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(389), 17,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
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,
ACTIONS(391), 22,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[6802] = 17,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(129), 1,
sym_expression,
STATE(138), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(391), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(389), 12,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[6880] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(563), 1,
anon_sym_EQ,
STATE(67), 1,
sym_assignment_operator,
ACTIONS(395), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(389), 16,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
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,
ACTIONS(391), 22,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[6936] = 17,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(129), 1,
sym_expression,
STATE(137), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(391), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(389), 12,
anon_sym_RPAREN,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[7014] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(63), 1,
anon_sym_DASH,
ACTIONS(91), 1,
anon_sym_COLON,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(415), 7,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
ACTIONS(417), 18,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7077] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
STATE(231), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
ACTIONS(567), 12,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[7147] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(63), 1,
anon_sym_DASH,
ACTIONS(91), 1,
anon_sym_COLON,
ACTIONS(573), 1,
anon_sym_COMMA,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(569), 6,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(571), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[7201] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(575), 1,
sym_identifier,
ACTIONS(578), 1,
anon_sym_LBRACE,
ACTIONS(581), 1,
anon_sym_LPAREN,
ACTIONS(586), 1,
aux_sym_integer_token1,
ACTIONS(589), 1,
aux_sym_float_token1,
ACTIONS(592), 1,
sym_string,
ACTIONS(598), 1,
anon_sym_LBRACK,
ACTIONS(601), 1,
anon_sym_function,
ACTIONS(604), 1,
anon_sym_table,
STATE(129), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
ACTIONS(584), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
ACTIONS(595), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7264] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(63), 1,
anon_sym_DASH,
ACTIONS(91), 1,
anon_sym_COLON,
ACTIONS(611), 1,
anon_sym_COMMA,
STATE(172), 1,
sym_math_operator,
STATE(199), 1,
sym_logic_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(607), 6,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(609), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
[7317] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(613), 1,
sym_identifier,
ACTIONS(616), 1,
anon_sym_LBRACE,
ACTIONS(619), 1,
anon_sym_LPAREN,
ACTIONS(622), 1,
anon_sym_RPAREN,
ACTIONS(624), 1,
aux_sym_integer_token1,
ACTIONS(627), 1,
aux_sym_float_token1,
ACTIONS(630), 1,
sym_string,
ACTIONS(636), 1,
anon_sym_LBRACK,
ACTIONS(639), 1,
anon_sym_function,
ACTIONS(642), 1,
anon_sym_table,
STATE(131), 1,
sym_expression,
STATE(132), 1,
aux_sym_tool_repeat1,
ACTIONS(633), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7379] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(645), 1,
anon_sym_RBRACK,
STATE(129), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7441] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(647), 1,
anon_sym_RPAREN,
STATE(131), 1,
sym_expression,
STATE(132), 1,
aux_sym_tool_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7503] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(649), 1,
anon_sym_RPAREN,
STATE(131), 1,
sym_expression,
STATE(140), 1,
aux_sym_tool_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7565] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(651), 1,
anon_sym_RBRACK,
STATE(129), 1,
sym_expression,
STATE(133), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7627] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(653), 1,
anon_sym_RPAREN,
STATE(129), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7689] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(655), 1,
anon_sym_RPAREN,
STATE(129), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7751] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
ACTIONS(657), 1,
anon_sym_RBRACE,
STATE(143), 1,
aux_sym_match_repeat1,
STATE(235), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7813] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(659), 1,
anon_sym_RPAREN,
STATE(131), 1,
sym_expression,
STATE(132), 1,
aux_sym_tool_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7875] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(661), 1,
anon_sym_RBRACK,
STATE(129), 1,
sym_expression,
STATE(130), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7937] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(663), 1,
anon_sym_RBRACK,
STATE(129), 1,
sym_expression,
STATE(141), 1,
aux_sym_list_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[7999] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(665), 1,
sym_identifier,
ACTIONS(668), 1,
anon_sym_LBRACE,
ACTIONS(671), 1,
anon_sym_RBRACE,
ACTIONS(673), 1,
anon_sym_LPAREN,
ACTIONS(676), 1,
aux_sym_integer_token1,
ACTIONS(679), 1,
aux_sym_float_token1,
ACTIONS(682), 1,
sym_string,
ACTIONS(688), 1,
anon_sym_LBRACK,
ACTIONS(691), 1,
anon_sym_function,
ACTIONS(694), 1,
anon_sym_table,
STATE(143), 1,
aux_sym_match_repeat1,
STATE(235), 1,
sym_expression,
ACTIONS(685), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8061] = 16,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
ACTIONS(697), 1,
anon_sym_RPAREN,
STATE(131), 1,
sym_expression,
STATE(134), 1,
aux_sym_tool_repeat1,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8123] = 15,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
STATE(139), 1,
aux_sym_match_repeat1,
STATE(235), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8182] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
STATE(231), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8238] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
STATE(212), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8294] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(3), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8350] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(15), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8406] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(13), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8462] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(2), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8518] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(11), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8574] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(84), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8630] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(16), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8686] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(17), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8742] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(18), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8798] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(19), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8854] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(20), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[8910] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(561), 1,
sym_identifier,
STATE(28), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[8966] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(30), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9022] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(21), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9078] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(561), 1,
sym_identifier,
STATE(32), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9134] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(33), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-28 14:28:43 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9190] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(31), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9246] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-22 20:32:55 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-22 20:32:55 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 05:09:29 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 05:09:29 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(35), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9302] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
2023-10-28 14:28:43 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(246), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(699), 1,
sym_identifier,
STATE(233), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9358] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(246), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(701), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(237), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9414] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-31 07:17:58 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
2023-10-28 14:28:43 +00:00
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(55), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(59), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(561), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(81), 1,
2023-10-31 07:17:58 +00:00
sym_expression,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
2023-10-31 09:51:37 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9470] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(74), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9526] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(565), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(703), 1,
anon_sym_function,
ACTIONS(705), 1,
anon_sym_table,
STATE(204), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9582] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-18 22:18:41 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(246), 1,
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(565), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(234), 1,
2023-10-31 07:17:58 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
2023-10-31 07:17:58 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9638] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 05:09:29 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
2023-10-31 05:09:29 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
2023-10-31 07:17:58 +00:00
ACTIONS(19), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 07:17:58 +00:00
ACTIONS(21), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(561), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(83), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 09:51:37 +00:00
ACTIONS(17), 2,
2023-10-31 05:09:29 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
2023-10-31 09:51:37 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9694] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(565), 1,
sym_identifier,
ACTIONS(703), 1,
anon_sym_function,
ACTIONS(705), 1,
anon_sym_table,
STATE(206), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9750] = 14,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 09:51:37 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(246), 1,
2023-10-31 09:51:37 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(565), 1,
sym_identifier,
STATE(213), 1,
2023-10-31 09:51:37 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-31 09:51:37 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9806] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
2023-10-31 09:51:37 +00:00
anon_sym_function,
2023-10-31 10:21:21 +00:00
ACTIONS(246), 1,
2023-10-31 13:31:10 +00:00
anon_sym_table,
ACTIONS(565), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(232), 1,
2023-10-31 07:17:58 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(240), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
2023-10-31 07:17:58 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9862] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(230), 1,
anon_sym_LBRACE,
ACTIONS(232), 1,
anon_sym_LPAREN,
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
aux_sym_float_token1,
ACTIONS(238), 1,
sym_string,
ACTIONS(242), 1,
anon_sym_LBRACK,
ACTIONS(565), 1,
sym_identifier,
ACTIONS(703), 1,
anon_sym_function,
ACTIONS(705), 1,
anon_sym_table,
STATE(208), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[9918] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(85), 1,
2023-10-31 05:09:29 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
2023-10-31 07:17:58 +00:00
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[9974] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(5), 1,
2023-10-31 07:17:58 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 07:17:58 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[10030] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(12), 1,
2023-10-31 07:17:58 +00:00
sym_expression,
2023-10-31 13:31:10 +00:00
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
2023-10-31 09:51:37 +00:00
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
2023-10-31 13:31:10 +00:00
STATE(120), 7,
2023-10-31 10:21:21 +00:00
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
2023-10-31 13:31:10 +00:00
[10086] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(4), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10142] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(238), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10198] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(79), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10254] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-21 17:19:01 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-21 17:19:01 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(34), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10310] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(27), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10366] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
2023-10-21 17:19:01 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-21 17:19:01 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(29), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10422] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(82), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-29 23:31:06 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10478] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(211), 1,
sym_expression,
ACTIONS(240), 2,
2023-10-21 20:38:20 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10534] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-28 14:28:43 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(565), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(210), 1,
sym_expression,
ACTIONS(240), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10590] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(26), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10646] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(80), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10702] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(565), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(703), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(705), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
STATE(207), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10758] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(565), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(703), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(705), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
STATE(203), 1,
sym_expression,
ACTIONS(240), 2,
anon_sym_true,
anon_sym_false,
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10814] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(25), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10870] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
2023-10-29 23:31:06 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-28 14:28:43 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(24), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10926] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(23), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[10982] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-29 23:31:06 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(22), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11038] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(55), 1,
anon_sym_function,
ACTIONS(59), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(76), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11094] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(14), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11150] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(86), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11206] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(9), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(15), 1,
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(19), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(21), 1,
anon_sym_function,
ACTIONS(23), 1,
anon_sym_table,
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(88), 1,
sym_expression,
ACTIONS(17), 2,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11262] = 14,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(230), 1,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(232), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 13:31:10 +00:00
ACTIONS(234), 1,
aux_sym_integer_token1,
ACTIONS(236), 1,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 13:31:10 +00:00
ACTIONS(238), 1,
2023-10-31 07:17:58 +00:00
sym_string,
2023-10-31 13:31:10 +00:00
ACTIONS(242), 1,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(244), 1,
anon_sym_function,
ACTIONS(246), 1,
anon_sym_table,
ACTIONS(707), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(236), 1,
sym_expression,
ACTIONS(240), 2,
2023-10-21 17:19:01 +00:00
anon_sym_true,
anon_sym_false,
2023-10-31 13:31:10 +00:00
STATE(217), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(219), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11318] = 14,
ACTIONS(3), 1,
sym_comment,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
aux_sym_integer_token1,
ACTIONS(13), 1,
aux_sym_float_token1,
ACTIONS(15), 1,
sym_string,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
2023-10-31 07:17:58 +00:00
anon_sym_function,
2023-10-31 13:31:10 +00:00
ACTIONS(23), 1,
2023-10-31 07:17:58 +00:00
anon_sym_table,
2023-10-31 13:31:10 +00:00
ACTIONS(183), 1,
anon_sym_LBRACE,
ACTIONS(561), 1,
sym_identifier,
STATE(10), 1,
sym_expression,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(107), 7,
sym_integer,
sym_float,
sym_boolean,
sym_list,
sym_map,
sym_function,
sym_table,
STATE(120), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_tool,
[11374] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
STATE(176), 1,
sym_logic_operator,
STATE(191), 1,
sym_math_operator,
ACTIONS(425), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(423), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11409] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(176), 1,
sym_logic_operator,
STATE(191), 1,
sym_math_operator,
ACTIONS(403), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(401), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RPAREN,
sym_identifier,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11444] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(709), 5,
anon_sym_LBRACE,
2023-10-31 07:17:58 +00:00
anon_sym_LPAREN,
2023-10-31 09:51:37 +00:00
aux_sym_float_token1,
2023-10-31 07:17:58 +00:00
sym_string,
anon_sym_LBRACK,
2023-10-31 13:31:10 +00:00
ACTIONS(567), 18,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
aux_sym_integer_token1,
2023-10-31 07:17:58 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-31 13:31:10 +00:00
[11475] = 6,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(711), 1,
anon_sym_DOT_DOT,
STATE(176), 1,
sym_logic_operator,
STATE(191), 1,
2023-10-31 09:51:37 +00:00
sym_math_operator,
2023-10-31 13:31:10 +00:00
ACTIONS(403), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(401), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-10-31 13:31:10 +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,
anon_sym_EQ_GT,
[11512] = 5,
ACTIONS(3), 1,
sym_comment,
STATE(176), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(191), 1,
sym_math_operator,
ACTIONS(429), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(427), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RPAREN,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11547] = 8,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(713), 1,
anon_sym_COLON,
STATE(176), 1,
sym_logic_operator,
STATE(191), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(411), 7,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RPAREN,
sym_identifier,
2023-10-31 13:31:10 +00:00
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[11588] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
STATE(176), 1,
sym_logic_operator,
STATE(191), 1,
sym_math_operator,
ACTIONS(421), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(419), 19,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11623] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
STATE(147), 1,
sym_logic_operator,
STATE(174), 1,
sym_math_operator,
ACTIONS(421), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(419), 18,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
anon_sym_COMMA,
anon_sym_COLON,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11657] = 5,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
STATE(147), 1,
sym_logic_operator,
STATE(174), 1,
sym_math_operator,
ACTIONS(425), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(423), 18,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-10-31 13:31:10 +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,
anon_sym_EQ_GT,
[11691] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(715), 1,
anon_sym_COLON,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(411), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
anon_sym_COMMA,
2023-10-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11731] = 5,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
STATE(147), 1,
sym_logic_operator,
STATE(174), 1,
sym_math_operator,
ACTIONS(429), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(427), 18,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11765] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(523), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(521), 19,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11794] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(519), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(517), 19,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11823] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(515), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(513), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11852] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(503), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(501), 19,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11881] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(473), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(471), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11910] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(551), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(549), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11939] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(511), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(509), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11968] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(457), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(455), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[11997] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(543), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(541), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12026] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(559), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(557), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12055] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(483), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(481), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12084] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(449), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(447), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12113] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(453), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(451), 19,
2023-10-31 09:51:37 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_RPAREN,
sym_identifier,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12142] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(495), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(493), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12171] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(555), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(553), 19,
2023-10-31 07:17:58 +00:00
anon_sym_LBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
anon_sym_RPAREN,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 09:51:37 +00:00
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12200] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(531), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(529), 19,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
anon_sym_COMMA,
anon_sym_COLON,
2023-10-31 09:51:37 +00:00
anon_sym_DOT_DOT,
2023-10-31 13:31:10 +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-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12229] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(445), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(443), 19,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RBRACE,
2023-10-31 09:51:37 +00:00
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
anon_sym_COMMA,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-31 09:51:37 +00:00
anon_sym_EQ_GT,
2023-10-31 13:31:10 +00:00
[12258] = 9,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(719), 1,
anon_sym_COMMA,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(717), 2,
anon_sym_RBRACE,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12297] = 8,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(721), 1,
anon_sym_LBRACE,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12332] = 8,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 10:21:21 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(723), 1,
sym_identifier,
STATE(147), 1,
2023-10-31 10:21:21 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12367] = 8,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(725), 1,
anon_sym_LBRACE,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12402] = 8,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(727), 1,
anon_sym_EQ_GT,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12437] = 8,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(729), 1,
sym_identifier,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12472] = 8,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(731), 1,
sym_identifier,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12507] = 8,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
ACTIONS(733), 1,
anon_sym_LBRACE,
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12542] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(735), 1,
anon_sym_in,
ACTIONS(391), 3,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
ACTIONS(389), 12,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +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,
[12568] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(737), 1,
anon_sym_in,
ACTIONS(391), 3,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
ACTIONS(389), 12,
2023-10-31 05:09:29 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +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,
[12594] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(739), 1,
anon_sym_in,
ACTIONS(391), 3,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
ACTIONS(389), 12,
2023-10-31 09:51:37 +00:00
anon_sym_COLON,
2023-10-31 13:31:10 +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,
[12620] = 7,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(715), 1,
anon_sym_COLON,
2023-10-31 13:31:10 +00:00
STATE(147), 1,
2023-10-31 09:51:37 +00:00
sym_logic_operator,
2023-10-31 13:31:10 +00:00
STATE(174), 1,
sym_math_operator,
ACTIONS(57), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(61), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(65), 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,
[12652] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(741), 1,
anon_sym_RPAREN,
ACTIONS(551), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(549), 12,
anon_sym_COLON,
2023-10-31 13:31:10 +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,
[12677] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(743), 1,
anon_sym_RPAREN,
ACTIONS(551), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(549), 12,
anon_sym_COLON,
2023-10-31 13:31:10 +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,
[12702] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(745), 6,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(584), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[12723] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(747), 6,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
ACTIONS(749), 6,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_RBRACE,
anon_sym_LPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
[12743] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(622), 6,
2023-10-29 23:31:06 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_LPAREN,
anon_sym_RPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
ACTIONS(751), 6,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
[12763] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(755), 5,
2023-10-31 05:09:29 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_LPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
ACTIONS(753), 6,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
[12782] = 3,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(759), 5,
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
anon_sym_LPAREN,
aux_sym_float_token1,
sym_string,
anon_sym_LBRACK,
ACTIONS(757), 6,
sym_identifier,
aux_sym_integer_token1,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
[12801] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
ACTIONS(763), 1,
anon_sym_GT,
STATE(270), 1,
aux_sym_function_repeat1,
[12814] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
ACTIONS(765), 1,
anon_sym_GT,
STATE(265), 1,
aux_sym_function_repeat1,
[12827] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
ACTIONS(767), 1,
anon_sym_GT,
STATE(255), 1,
aux_sym_function_repeat1,
[12840] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 07:17:58 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(769), 1,
2023-10-31 09:51:37 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
2023-10-31 09:51:37 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12853] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(771), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(773), 1,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
STATE(274), 1,
2023-10-31 09:51:37 +00:00
aux_sym_map_repeat1,
2023-10-31 13:31:10 +00:00
[12866] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(775), 1,
2023-10-31 09:51:37 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
2023-10-31 09:51:37 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12879] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(771), 1,
sym_identifier,
ACTIONS(777), 1,
anon_sym_RBRACE,
STATE(254), 1,
aux_sym_map_repeat1,
[12892] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(781), 1,
anon_sym_COMMA,
ACTIONS(779), 2,
2023-10-31 09:51:37 +00:00
sym_identifier,
anon_sym_GT,
2023-10-31 13:31:10 +00:00
[12903] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-21 17:19:01 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(783), 1,
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12916] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(785), 1,
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12929] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(787), 1,
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(253), 1,
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12942] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(789), 1,
2023-10-31 09:51:37 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(258), 1,
2023-10-31 10:21:21 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12955] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(771), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(791), 1,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
STATE(274), 1,
2023-10-31 09:51:37 +00:00
aux_sym_map_repeat1,
2023-10-31 13:31:10 +00:00
[12968] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(324), 1,
2023-10-31 10:21:21 +00:00
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
ACTIONS(771), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(262), 1,
2023-10-31 10:21:21 +00:00
aux_sym_map_repeat1,
2023-10-31 13:31:10 +00:00
[12981] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(793), 1,
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[12994] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(795), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
aux_sym_function_repeat1,
[13007] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(797), 1,
2023-10-31 10:21:21 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
2023-10-31 10:21:21 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13020] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(799), 1,
2023-10-31 10:21:21 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
2023-10-31 10:21:21 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13033] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(801), 1,
2023-10-28 14:28:43 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(267), 1,
2023-10-31 09:51:37 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13046] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(803), 1,
anon_sym_GT,
STATE(270), 1,
aux_sym_function_repeat1,
[13059] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(805), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(808), 1,
anon_sym_GT,
STATE(270), 1,
aux_sym_function_repeat1,
[13072] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-28 14:28:43 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(810), 1,
anon_sym_GT,
STATE(250), 1,
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13085] = 4,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(812), 1,
anon_sym_GT,
STATE(273), 1,
2023-10-31 10:21:21 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13098] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-29 23:31:06 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
ACTIONS(814), 1,
2023-10-31 09:51:37 +00:00
anon_sym_GT,
2023-10-31 13:31:10 +00:00
STATE(270), 1,
aux_sym_function_repeat1,
[13111] = 4,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(816), 1,
sym_identifier,
ACTIONS(819), 1,
2023-10-31 10:21:21 +00:00
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
STATE(274), 1,
aux_sym_map_repeat1,
[13124] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(761), 1,
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(269), 1,
aux_sym_function_repeat1,
[13134] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 05:09:29 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(266), 1,
2023-10-31 09:51:37 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13144] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
sym_identifier,
STATE(264), 1,
aux_sym_function_repeat1,
[13154] = 3,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(761), 1,
2023-10-31 09:51:37 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
STATE(259), 1,
2023-10-31 09:51:37 +00:00
aux_sym_function_repeat1,
2023-10-31 13:31:10 +00:00
[13164] = 2,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(808), 2,
sym_identifier,
anon_sym_GT,
[13172] = 2,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(821), 2,
2023-10-31 10:21:21 +00:00
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
sym_identifier,
[13180] = 2,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(823), 1,
anon_sym_in,
[13187] = 2,
2023-10-31 10:21:21 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(825), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
[13194] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(827), 1,
2023-10-31 09:51:37 +00:00
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
[13201] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(829), 1,
anon_sym_in,
[13208] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(831), 1,
2023-10-31 10:21:21 +00:00
anon_sym_from,
2023-10-31 13:31:10 +00:00
[13215] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(833), 1,
anon_sym_to,
[13222] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(835), 1,
anon_sym_LT,
[13229] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(837), 1,
anon_sym_in,
[13236] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(839), 1,
anon_sym_in,
[13243] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(841), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
[13250] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(843), 1,
2023-10-31 10:21:21 +00:00
anon_sym_in,
2023-10-31 13:31:10 +00:00
[13257] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(845), 1,
anon_sym_from,
[13264] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(847), 1,
sym_identifier,
[13271] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(849), 1,
sym_identifier,
[13278] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(851), 1,
anon_sym_in,
[13285] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(853), 1,
anon_sym_from,
[13292] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(855), 1,
anon_sym_LT,
[13299] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(857), 1,
anon_sym_RBRACE,
2023-10-31 13:31:10 +00:00
[13306] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(859), 1,
anon_sym_in,
[13313] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(861), 1,
anon_sym_from,
[13320] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(863), 1,
sym_identifier,
[13327] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(865), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
[13334] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(867), 1,
anon_sym_LT,
[13341] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(869), 1,
anon_sym_in,
[13348] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(871), 1,
anon_sym_in,
[13355] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(873), 1,
2023-10-31 10:21:21 +00:00
anon_sym_LBRACE,
2023-10-31 13:31:10 +00:00
[13362] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(875), 1,
anon_sym_in,
[13369] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(877), 1,
2023-10-31 10:21:21 +00:00
anon_sym_from,
2023-10-31 13:31:10 +00:00
[13376] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(879), 1,
2023-10-31 10:21:21 +00:00
anon_sym_in,
2023-10-31 13:31:10 +00:00
[13383] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(881), 1,
anon_sym_from,
[13390] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(883), 1,
anon_sym_in,
[13397] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(885), 1,
anon_sym_in,
[13404] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(887), 1,
anon_sym_LT,
[13411] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(889), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
[13418] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(891), 1,
anon_sym_RBRACE,
[13425] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(893), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
[13432] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(895), 1,
anon_sym_from,
[13439] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(897), 1,
2023-10-31 10:21:21 +00:00
anon_sym_into,
2023-10-31 13:31:10 +00:00
[13446] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(899), 1,
sym_identifier,
[13453] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(901), 1,
anon_sym_EQ,
[13460] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(903), 1,
2023-10-31 10:21:21 +00:00
anon_sym_in,
2023-10-31 13:31:10 +00:00
[13467] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(905), 1,
2023-10-31 10:21:21 +00:00
sym_identifier,
2023-10-31 13:31:10 +00:00
[13474] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(907), 1,
anon_sym_LT,
[13481] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(909), 1,
sym_identifier,
[13488] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(911), 1,
anon_sym_into,
[13495] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(913), 1,
sym_identifier,
[13502] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(915), 1,
sym_identifier,
[13509] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(917), 1,
anon_sym_from,
[13516] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(919), 1,
sym_identifier,
[13523] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(921), 1,
sym_identifier,
[13530] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(923), 1,
ts_builtin_sym_end,
[13537] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(925), 1,
sym_identifier,
[13544] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(927), 1,
sym_identifier,
[13551] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(929), 1,
anon_sym_in,
[13558] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(931), 1,
sym_identifier,
[13565] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(933), 1,
2023-10-31 09:51:37 +00:00
anon_sym_from,
2023-10-31 13:31:10 +00:00
[13572] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(935), 1,
anon_sym_to,
[13579] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(937), 1,
anon_sym_LT,
[13586] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(939), 1,
anon_sym_to,
[13593] = 2,
2023-10-31 07:17:58 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(941), 1,
anon_sym_LT,
2023-10-31 13:31:10 +00:00
[13600] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(943), 1,
sym_identifier,
[13607] = 2,
2023-10-31 09:51:37 +00:00
ACTIONS(3), 1,
sym_comment,
2023-10-31 13:31:10 +00:00
ACTIONS(945), 1,
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
2023-10-31 13:31:10 +00:00
[SMALL_STATE(36)] = 0,
[SMALL_STATE(37)] = 121,
[SMALL_STATE(38)] = 212,
[SMALL_STATE(39)] = 333,
[SMALL_STATE(40)] = 424,
[SMALL_STATE(41)] = 544,
[SMALL_STATE(42)] = 664,
[SMALL_STATE(43)] = 784,
[SMALL_STATE(44)] = 902,
[SMALL_STATE(45)] = 1022,
[SMALL_STATE(46)] = 1140,
[SMALL_STATE(47)] = 1260,
[SMALL_STATE(48)] = 1380,
[SMALL_STATE(49)] = 1497,
[SMALL_STATE(50)] = 1614,
[SMALL_STATE(51)] = 1731,
[SMALL_STATE(52)] = 1848,
[SMALL_STATE(53)] = 1965,
[SMALL_STATE(54)] = 2082,
[SMALL_STATE(55)] = 2199,
[SMALL_STATE(56)] = 2316,
[SMALL_STATE(57)] = 2433,
[SMALL_STATE(58)] = 2550,
[SMALL_STATE(59)] = 2667,
[SMALL_STATE(60)] = 2784,
[SMALL_STATE(61)] = 2901,
[SMALL_STATE(62)] = 3018,
[SMALL_STATE(63)] = 3135,
[SMALL_STATE(64)] = 3252,
[SMALL_STATE(65)] = 3369,
[SMALL_STATE(66)] = 3482,
[SMALL_STATE(67)] = 3595,
[SMALL_STATE(68)] = 3708,
[SMALL_STATE(69)] = 3773,
[SMALL_STATE(70)] = 3838,
[SMALL_STATE(71)] = 3898,
[SMALL_STATE(72)] = 3960,
[SMALL_STATE(73)] = 4021,
[SMALL_STATE(74)] = 4075,
[SMALL_STATE(75)] = 4135,
[SMALL_STATE(76)] = 4189,
[SMALL_STATE(77)] = 4257,
[SMALL_STATE(78)] = 4315,
[SMALL_STATE(79)] = 4373,
[SMALL_STATE(80)] = 4431,
[SMALL_STATE(81)] = 4489,
[SMALL_STATE(82)] = 4547,
[SMALL_STATE(83)] = 4615,
[SMALL_STATE(84)] = 4672,
[SMALL_STATE(85)] = 4739,
[SMALL_STATE(86)] = 4796,
[SMALL_STATE(87)] = 4863,
[SMALL_STATE(88)] = 4920,
[SMALL_STATE(89)] = 4977,
[SMALL_STATE(90)] = 5029,
[SMALL_STATE(91)] = 5081,
[SMALL_STATE(92)] = 5133,
[SMALL_STATE(93)] = 5185,
[SMALL_STATE(94)] = 5237,
[SMALL_STATE(95)] = 5289,
[SMALL_STATE(96)] = 5341,
[SMALL_STATE(97)] = 5393,
[SMALL_STATE(98)] = 5445,
[SMALL_STATE(99)] = 5497,
[SMALL_STATE(100)] = 5549,
[SMALL_STATE(101)] = 5601,
[SMALL_STATE(102)] = 5653,
[SMALL_STATE(103)] = 5705,
[SMALL_STATE(104)] = 5757,
[SMALL_STATE(105)] = 5809,
[SMALL_STATE(106)] = 5861,
[SMALL_STATE(107)] = 5913,
[SMALL_STATE(108)] = 5965,
[SMALL_STATE(109)] = 6017,
[SMALL_STATE(110)] = 6069,
[SMALL_STATE(111)] = 6121,
[SMALL_STATE(112)] = 6173,
[SMALL_STATE(113)] = 6225,
[SMALL_STATE(114)] = 6277,
[SMALL_STATE(115)] = 6329,
[SMALL_STATE(116)] = 6381,
[SMALL_STATE(117)] = 6433,
[SMALL_STATE(118)] = 6485,
[SMALL_STATE(119)] = 6537,
[SMALL_STATE(120)] = 6589,
[SMALL_STATE(121)] = 6641,
[SMALL_STATE(122)] = 6693,
[SMALL_STATE(123)] = 6745,
[SMALL_STATE(124)] = 6802,
[SMALL_STATE(125)] = 6880,
[SMALL_STATE(126)] = 6936,
[SMALL_STATE(127)] = 7014,
[SMALL_STATE(128)] = 7077,
[SMALL_STATE(129)] = 7147,
[SMALL_STATE(130)] = 7201,
[SMALL_STATE(131)] = 7264,
[SMALL_STATE(132)] = 7317,
[SMALL_STATE(133)] = 7379,
[SMALL_STATE(134)] = 7441,
[SMALL_STATE(135)] = 7503,
[SMALL_STATE(136)] = 7565,
[SMALL_STATE(137)] = 7627,
[SMALL_STATE(138)] = 7689,
[SMALL_STATE(139)] = 7751,
[SMALL_STATE(140)] = 7813,
[SMALL_STATE(141)] = 7875,
[SMALL_STATE(142)] = 7937,
[SMALL_STATE(143)] = 7999,
[SMALL_STATE(144)] = 8061,
[SMALL_STATE(145)] = 8123,
[SMALL_STATE(146)] = 8182,
[SMALL_STATE(147)] = 8238,
[SMALL_STATE(148)] = 8294,
[SMALL_STATE(149)] = 8350,
[SMALL_STATE(150)] = 8406,
[SMALL_STATE(151)] = 8462,
[SMALL_STATE(152)] = 8518,
[SMALL_STATE(153)] = 8574,
[SMALL_STATE(154)] = 8630,
[SMALL_STATE(155)] = 8686,
[SMALL_STATE(156)] = 8742,
[SMALL_STATE(157)] = 8798,
[SMALL_STATE(158)] = 8854,
[SMALL_STATE(159)] = 8910,
[SMALL_STATE(160)] = 8966,
[SMALL_STATE(161)] = 9022,
[SMALL_STATE(162)] = 9078,
[SMALL_STATE(163)] = 9134,
[SMALL_STATE(164)] = 9190,
[SMALL_STATE(165)] = 9246,
[SMALL_STATE(166)] = 9302,
[SMALL_STATE(167)] = 9358,
[SMALL_STATE(168)] = 9414,
[SMALL_STATE(169)] = 9470,
[SMALL_STATE(170)] = 9526,
[SMALL_STATE(171)] = 9582,
[SMALL_STATE(172)] = 9638,
[SMALL_STATE(173)] = 9694,
[SMALL_STATE(174)] = 9750,
[SMALL_STATE(175)] = 9806,
[SMALL_STATE(176)] = 9862,
[SMALL_STATE(177)] = 9918,
[SMALL_STATE(178)] = 9974,
[SMALL_STATE(179)] = 10030,
[SMALL_STATE(180)] = 10086,
[SMALL_STATE(181)] = 10142,
[SMALL_STATE(182)] = 10198,
[SMALL_STATE(183)] = 10254,
[SMALL_STATE(184)] = 10310,
[SMALL_STATE(185)] = 10366,
[SMALL_STATE(186)] = 10422,
[SMALL_STATE(187)] = 10478,
[SMALL_STATE(188)] = 10534,
[SMALL_STATE(189)] = 10590,
[SMALL_STATE(190)] = 10646,
[SMALL_STATE(191)] = 10702,
[SMALL_STATE(192)] = 10758,
[SMALL_STATE(193)] = 10814,
[SMALL_STATE(194)] = 10870,
[SMALL_STATE(195)] = 10926,
[SMALL_STATE(196)] = 10982,
[SMALL_STATE(197)] = 11038,
[SMALL_STATE(198)] = 11094,
[SMALL_STATE(199)] = 11150,
[SMALL_STATE(200)] = 11206,
[SMALL_STATE(201)] = 11262,
[SMALL_STATE(202)] = 11318,
[SMALL_STATE(203)] = 11374,
[SMALL_STATE(204)] = 11409,
[SMALL_STATE(205)] = 11444,
[SMALL_STATE(206)] = 11475,
[SMALL_STATE(207)] = 11512,
[SMALL_STATE(208)] = 11547,
[SMALL_STATE(209)] = 11588,
[SMALL_STATE(210)] = 11623,
[SMALL_STATE(211)] = 11657,
[SMALL_STATE(212)] = 11691,
[SMALL_STATE(213)] = 11731,
[SMALL_STATE(214)] = 11765,
[SMALL_STATE(215)] = 11794,
[SMALL_STATE(216)] = 11823,
[SMALL_STATE(217)] = 11852,
[SMALL_STATE(218)] = 11881,
[SMALL_STATE(219)] = 11910,
[SMALL_STATE(220)] = 11939,
[SMALL_STATE(221)] = 11968,
[SMALL_STATE(222)] = 11997,
[SMALL_STATE(223)] = 12026,
[SMALL_STATE(224)] = 12055,
[SMALL_STATE(225)] = 12084,
[SMALL_STATE(226)] = 12113,
[SMALL_STATE(227)] = 12142,
[SMALL_STATE(228)] = 12171,
[SMALL_STATE(229)] = 12200,
[SMALL_STATE(230)] = 12229,
[SMALL_STATE(231)] = 12258,
[SMALL_STATE(232)] = 12297,
[SMALL_STATE(233)] = 12332,
[SMALL_STATE(234)] = 12367,
[SMALL_STATE(235)] = 12402,
[SMALL_STATE(236)] = 12437,
[SMALL_STATE(237)] = 12472,
[SMALL_STATE(238)] = 12507,
[SMALL_STATE(239)] = 12542,
[SMALL_STATE(240)] = 12568,
[SMALL_STATE(241)] = 12594,
[SMALL_STATE(242)] = 12620,
[SMALL_STATE(243)] = 12652,
[SMALL_STATE(244)] = 12677,
[SMALL_STATE(245)] = 12702,
[SMALL_STATE(246)] = 12723,
[SMALL_STATE(247)] = 12743,
[SMALL_STATE(248)] = 12763,
[SMALL_STATE(249)] = 12782,
[SMALL_STATE(250)] = 12801,
[SMALL_STATE(251)] = 12814,
[SMALL_STATE(252)] = 12827,
[SMALL_STATE(253)] = 12840,
[SMALL_STATE(254)] = 12853,
[SMALL_STATE(255)] = 12866,
[SMALL_STATE(256)] = 12879,
[SMALL_STATE(257)] = 12892,
[SMALL_STATE(258)] = 12903,
[SMALL_STATE(259)] = 12916,
[SMALL_STATE(260)] = 12929,
[SMALL_STATE(261)] = 12942,
[SMALL_STATE(262)] = 12955,
[SMALL_STATE(263)] = 12968,
[SMALL_STATE(264)] = 12981,
[SMALL_STATE(265)] = 12994,
[SMALL_STATE(266)] = 13007,
[SMALL_STATE(267)] = 13020,
[SMALL_STATE(268)] = 13033,
[SMALL_STATE(269)] = 13046,
[SMALL_STATE(270)] = 13059,
[SMALL_STATE(271)] = 13072,
[SMALL_STATE(272)] = 13085,
[SMALL_STATE(273)] = 13098,
[SMALL_STATE(274)] = 13111,
[SMALL_STATE(275)] = 13124,
[SMALL_STATE(276)] = 13134,
[SMALL_STATE(277)] = 13144,
[SMALL_STATE(278)] = 13154,
[SMALL_STATE(279)] = 13164,
[SMALL_STATE(280)] = 13172,
[SMALL_STATE(281)] = 13180,
[SMALL_STATE(282)] = 13187,
[SMALL_STATE(283)] = 13194,
[SMALL_STATE(284)] = 13201,
[SMALL_STATE(285)] = 13208,
[SMALL_STATE(286)] = 13215,
[SMALL_STATE(287)] = 13222,
[SMALL_STATE(288)] = 13229,
[SMALL_STATE(289)] = 13236,
[SMALL_STATE(290)] = 13243,
[SMALL_STATE(291)] = 13250,
[SMALL_STATE(292)] = 13257,
[SMALL_STATE(293)] = 13264,
[SMALL_STATE(294)] = 13271,
[SMALL_STATE(295)] = 13278,
[SMALL_STATE(296)] = 13285,
[SMALL_STATE(297)] = 13292,
[SMALL_STATE(298)] = 13299,
[SMALL_STATE(299)] = 13306,
[SMALL_STATE(300)] = 13313,
[SMALL_STATE(301)] = 13320,
[SMALL_STATE(302)] = 13327,
[SMALL_STATE(303)] = 13334,
[SMALL_STATE(304)] = 13341,
[SMALL_STATE(305)] = 13348,
[SMALL_STATE(306)] = 13355,
[SMALL_STATE(307)] = 13362,
[SMALL_STATE(308)] = 13369,
[SMALL_STATE(309)] = 13376,
[SMALL_STATE(310)] = 13383,
[SMALL_STATE(311)] = 13390,
[SMALL_STATE(312)] = 13397,
[SMALL_STATE(313)] = 13404,
[SMALL_STATE(314)] = 13411,
[SMALL_STATE(315)] = 13418,
[SMALL_STATE(316)] = 13425,
[SMALL_STATE(317)] = 13432,
[SMALL_STATE(318)] = 13439,
[SMALL_STATE(319)] = 13446,
[SMALL_STATE(320)] = 13453,
[SMALL_STATE(321)] = 13460,
[SMALL_STATE(322)] = 13467,
[SMALL_STATE(323)] = 13474,
[SMALL_STATE(324)] = 13481,
[SMALL_STATE(325)] = 13488,
[SMALL_STATE(326)] = 13495,
[SMALL_STATE(327)] = 13502,
[SMALL_STATE(328)] = 13509,
[SMALL_STATE(329)] = 13516,
[SMALL_STATE(330)] = 13523,
[SMALL_STATE(331)] = 13530,
[SMALL_STATE(332)] = 13537,
[SMALL_STATE(333)] = 13544,
[SMALL_STATE(334)] = 13551,
[SMALL_STATE(335)] = 13558,
[SMALL_STATE(336)] = 13565,
[SMALL_STATE(337)] = 13572,
[SMALL_STATE(338)] = 13579,
[SMALL_STATE(339)] = 13586,
[SMALL_STATE(340)] = 13593,
[SMALL_STATE(341)] = 13600,
[SMALL_STATE(342)] = 13607,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-31 07:17:58 +00:00
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
2023-10-31 13:31:10 +00:00
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325),
[47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
[49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44),
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249),
[59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340),
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248),
[65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164),
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326),
[71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327),
[73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167),
[75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329),
[77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330),
[79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342),
[81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338),
[83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318),
[85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54),
[87] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72),
[91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198),
[95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335),
[97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
[99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201),
[101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316),
[103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
[105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341),
[107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313),
[109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49),
[111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2),
[113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(71),
[116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(263),
[119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(37),
[122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(91),
[125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(93),
[128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(107),
[131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(109),
[134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(142),
[137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(44),
[140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2),
[142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(340),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(181),
[148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(175),
[151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(164),
[154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(326),
[157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(327),
[160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(167),
[163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(329),
[166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(330),
[169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(342),
[172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(338),
[175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(318),
[178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(54),
[181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263),
[185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1),
[187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(72),
[190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(47),
[193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(297),
[196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(198),
[199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(335),
[202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(314),
[205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(201),
[208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(316),
[211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(282),
[214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(341),
[217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(313),
[220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(325),
[223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(49),
[226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126),
[230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230),
[236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220),
[242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46),
[246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287),
[248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
[250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(123),
[255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41),
[258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(37),
[261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(91),
[264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(93),
[267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(107),
[270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(109),
[273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(142),
[276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(47),
[279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(297),
[282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(181),
[285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(175),
[288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(165),
[291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(290),
[294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(294),
[297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(166),
[300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(302),
[303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(319),
[306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(322),
[309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(323),
[312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(325),
[315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(62),
[318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124),
[320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135),
[322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125),
[324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
[330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(123),
[333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(165),
[336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(290),
[339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(294),
[342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(166),
[345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(302),
[348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(319),
[351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(322),
[354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(323),
[357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(62),
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
[378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(171),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7),
[437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7),
[439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5),
[441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5),
[443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1),
[445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1),
[447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2),
[449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2),
[451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1),
[453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1),
[455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 3),
[457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 3),
[459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 7),
[465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 7),
[467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 2),
[469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 2),
[471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 2),
[487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 2),
[489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5),
[499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5),
[501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5),
[515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5),
[517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 1),
[527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 1),
[529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 4),
[531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 4),
[533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5),
[535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5),
[537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 5),
[547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 5),
[549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120),
[563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
[565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(120),
[578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(263),
[581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(37),
[584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(91),
[589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(93),
[592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(107),
[595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(109),
[598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(142),
[601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(47),
[604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(297),
[607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 1),
[609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 1),
[611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(120),
[616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(263),
[619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(37),
[622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 2),
[624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(91),
[627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(93),
[630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(107),
[633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(109),
[636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(142),
[639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(47),
[642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 2), SHIFT_REPEAT(297),
[645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(219),
[668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(256),
[671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(39),
[676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(230),
[679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(226),
[682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(217),
[685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(220),
[688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(136),
[691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(46),
[694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(287),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239),
[701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
[703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42),
[705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303),
[707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240),
[709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162),
[737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
[741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tool_repeat1, 2),
[753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328),
[765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320),
[773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182),
[799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(257),
[808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336),
[812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(320),
[819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160),
[831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311),
[851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179),
[861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286),
[907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301),
[913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
[915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308),
[923] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321),
[927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288),
[933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333),
[941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337),
[945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_dust(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
2023-10-31 05:09:29 +00:00
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif