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

9650 lines
225 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-19 01:50:45 +00:00
#define STATE_COUNT 248
#define LARGE_STATE_COUNT 2
2023-10-19 01:50:45 +00:00
#define SYMBOL_COUNT 111
#define ALIAS_COUNT 0
2023-10-19 01:50:45 +00:00
#define TOKEN_COUNT 71
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
#define MAX_ALIAS_SEQUENCE_LENGTH 7
#define PRODUCTION_ID_COUNT 1
enum {
sym_identifier = 1,
aux_sym_comment_token1 = 2,
anon_sym_LPAREN = 3,
anon_sym_RPAREN = 4,
sym_integer = 5,
sym_float = 6,
sym_string = 7,
anon_sym_true = 8,
anon_sym_false = 9,
anon_sym_LBRACK = 10,
anon_sym_COMMA = 11,
anon_sym_RBRACK = 12,
anon_sym_function = 13,
anon_sym_LT = 14,
anon_sym_GT = 15,
anon_sym_LBRACE = 16,
anon_sym_RBRACE = 17,
anon_sym_table = 18,
anon_sym_EQ = 19,
anon_sym_PLUS = 20,
anon_sym_DASH = 21,
anon_sym_STAR = 22,
anon_sym_SLASH = 23,
anon_sym_PERCENT = 24,
anon_sym_EQ_EQ = 25,
anon_sym_BANG_EQ = 26,
anon_sym_AMP_AMP = 27,
anon_sym_PIPE_PIPE = 28,
anon_sym_GT_EQ = 29,
anon_sym_LT_EQ = 30,
anon_sym_PLUS_EQ = 31,
anon_sym_DASH_EQ = 32,
anon_sym_if = 33,
anon_sym_elseif = 34,
anon_sym_else = 35,
anon_sym_while = 36,
anon_sym_for = 37,
anon_sym_in = 38,
anon_sym_transform = 39,
anon_sym_filter = 40,
2023-10-18 22:18:41 +00:00
anon_sym_find = 41,
2023-10-19 01:50:45 +00:00
anon_sym_remove = 42,
anon_sym_assert = 43,
anon_sym_assert_equal = 44,
anon_sym_output = 45,
anon_sym_read = 46,
anon_sym_write = 47,
anon_sym_raw = 48,
anon_sym_sh = 49,
anon_sym_bash = 50,
anon_sym_fish = 51,
anon_sym_zsh = 52,
anon_sym_random = 53,
anon_sym_random_boolean = 54,
anon_sym_random_float = 55,
anon_sym_random_string = 56,
anon_sym_random_integer = 57,
anon_sym_length = 58,
anon_sym_sort = 59,
anon_sym_to_csv = 60,
anon_sym_from_csv = 61,
anon_sym_to_json = 62,
anon_sym_from_json = 63,
anon_sym_help = 64,
anon_sym_select = 65,
anon_sym_from = 66,
anon_sym_where = 67,
anon_sym_insert = 68,
anon_sym_into = 69,
anon_sym_async = 70,
sym_root = 71,
sym_item = 72,
sym_statement = 73,
sym_comment = 74,
sym_expression = 75,
sym__expression_kind = 76,
sym_value = 77,
sym_boolean = 78,
sym_list = 79,
sym_function = 80,
sym_table = 81,
sym_map = 82,
sym_math = 83,
sym_math_operator = 84,
sym_logic = 85,
sym_logic_operator = 86,
sym_assignment = 87,
sym_assignment_operator = 88,
sym_if_else = 89,
sym_if = 90,
sym_else_if = 91,
sym_else = 92,
sym_function_call = 93,
sym_while = 94,
sym_for = 95,
sym_transform = 96,
sym_filter = 97,
sym_find = 98,
sym_remove = 99,
sym_tool = 100,
sym_select = 101,
sym_insert = 102,
sym_async = 103,
aux_sym_root_repeat1 = 104,
aux_sym_item_repeat1 = 105,
aux_sym_list_repeat1 = 106,
aux_sym_function_repeat1 = 107,
aux_sym_map_repeat1 = 108,
aux_sym_if_else_repeat1 = 109,
aux_sym_insert_repeat1 = 110,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[aux_sym_comment_token1] = "comment_token1",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_COMMA] = ",",
[anon_sym_RBRACK] = "]",
[anon_sym_function] = "function",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_table] = "table",
[anon_sym_EQ] = "=",
[anon_sym_PLUS] = "+",
[anon_sym_DASH] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_EQ] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_in] = "in",
[anon_sym_transform] = "transform",
[anon_sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[anon_sym_find] = "find",
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = "remove",
[anon_sym_assert] = "assert",
[anon_sym_assert_equal] = "assert_equal",
[anon_sym_output] = "output",
[anon_sym_read] = "read",
[anon_sym_write] = "write",
[anon_sym_raw] = "raw",
[anon_sym_sh] = "sh",
[anon_sym_bash] = "bash",
[anon_sym_fish] = "fish",
[anon_sym_zsh] = "zsh",
[anon_sym_random] = "random",
[anon_sym_random_boolean] = "random_boolean",
[anon_sym_random_float] = "random_float",
[anon_sym_random_string] = "random_string",
[anon_sym_random_integer] = "random_integer",
[anon_sym_length] = "length",
[anon_sym_sort] = "sort",
[anon_sym_to_csv] = "to_csv",
[anon_sym_from_csv] = "from_csv",
[anon_sym_to_json] = "to_json",
[anon_sym_from_json] = "from_json",
[anon_sym_help] = "help",
[anon_sym_select] = "select",
[anon_sym_from] = "from",
[anon_sym_where] = "where",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
[anon_sym_async] = "async",
[sym_root] = "root",
[sym_item] = "item",
[sym_statement] = "statement",
[sym_comment] = "comment",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_function] = "function",
[sym_table] = "table",
[sym_map] = "map",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_function_call] = "function_call",
[sym_while] = "while",
[sym_for] = "for",
[sym_transform] = "transform",
[sym_filter] = "filter",
2023-10-18 22:18:41 +00:00
[sym_find] = "find",
2023-10-19 01:50:45 +00:00
[sym_remove] = "remove",
[sym_tool] = "tool",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_async] = "async",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_item_repeat1] = "item_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_function_repeat1] = "function_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
[aux_sym_insert_repeat1] = "insert_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[aux_sym_comment_token1] = aux_sym_comment_token1,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_function] = anon_sym_function,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_table] = anon_sym_table,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_if] = anon_sym_if,
[anon_sym_elseif] = anon_sym_elseif,
[anon_sym_else] = anon_sym_else,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[anon_sym_in] = anon_sym_in,
[anon_sym_transform] = anon_sym_transform,
[anon_sym_filter] = anon_sym_filter,
2023-10-18 22:18:41 +00:00
[anon_sym_find] = anon_sym_find,
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = anon_sym_remove,
[anon_sym_assert] = anon_sym_assert,
[anon_sym_assert_equal] = anon_sym_assert_equal,
[anon_sym_output] = anon_sym_output,
[anon_sym_read] = anon_sym_read,
[anon_sym_write] = anon_sym_write,
[anon_sym_raw] = anon_sym_raw,
[anon_sym_sh] = anon_sym_sh,
[anon_sym_bash] = anon_sym_bash,
[anon_sym_fish] = anon_sym_fish,
[anon_sym_zsh] = anon_sym_zsh,
[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_string] = anon_sym_random_string,
[anon_sym_random_integer] = anon_sym_random_integer,
[anon_sym_length] = anon_sym_length,
[anon_sym_sort] = anon_sym_sort,
[anon_sym_to_csv] = anon_sym_to_csv,
[anon_sym_from_csv] = anon_sym_from_csv,
[anon_sym_to_json] = anon_sym_to_json,
[anon_sym_from_json] = anon_sym_from_json,
[anon_sym_help] = anon_sym_help,
[anon_sym_select] = anon_sym_select,
[anon_sym_from] = anon_sym_from,
[anon_sym_where] = anon_sym_where,
[anon_sym_insert] = anon_sym_insert,
[anon_sym_into] = anon_sym_into,
[anon_sym_async] = anon_sym_async,
[sym_root] = sym_root,
[sym_item] = sym_item,
[sym_statement] = sym_statement,
[sym_comment] = sym_comment,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_function] = sym_function,
[sym_table] = sym_table,
[sym_map] = sym_map,
[sym_math] = sym_math,
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_function_call] = sym_function_call,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_transform] = sym_transform,
[sym_filter] = sym_filter,
2023-10-18 22:18:41 +00:00
[sym_find] = sym_find,
2023-10-19 01:50:45 +00:00
[sym_remove] = sym_remove,
[sym_tool] = sym_tool,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_async] = sym_async,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_item_repeat1] = aux_sym_item_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
[aux_sym_insert_repeat1] = aux_sym_insert_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[aux_sym_comment_token1] = {
.visible = false,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_function] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_elseif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_transform] = {
.visible = true,
.named = false,
},
[anon_sym_filter] = {
.visible = true,
.named = false,
},
2023-10-18 22:18:41 +00:00
[anon_sym_find] = {
.visible = true,
.named = false,
},
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = {
.visible = true,
.named = false,
},
[anon_sym_assert] = {
.visible = true,
.named = false,
},
[anon_sym_assert_equal] = {
.visible = true,
.named = false,
},
[anon_sym_output] = {
.visible = true,
.named = false,
},
[anon_sym_read] = {
.visible = true,
.named = false,
},
[anon_sym_write] = {
.visible = true,
.named = false,
},
[anon_sym_raw] = {
.visible = true,
.named = false,
},
[anon_sym_sh] = {
.visible = true,
.named = false,
},
[anon_sym_bash] = {
.visible = true,
.named = false,
},
[anon_sym_fish] = {
.visible = true,
.named = false,
},
[anon_sym_zsh] = {
.visible = true,
.named = false,
},
[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_string] = {
.visible = true,
.named = false,
},
[anon_sym_random_integer] = {
.visible = true,
.named = false,
},
[anon_sym_length] = {
.visible = true,
.named = false,
},
[anon_sym_sort] = {
.visible = true,
.named = false,
},
[anon_sym_to_csv] = {
.visible = true,
.named = false,
},
[anon_sym_from_csv] = {
.visible = true,
.named = false,
},
[anon_sym_to_json] = {
.visible = true,
.named = false,
},
[anon_sym_from_json] = {
.visible = true,
.named = false,
},
[anon_sym_help] = {
.visible = true,
.named = false,
},
[anon_sym_select] = {
.visible = true,
.named = false,
},
[anon_sym_from] = {
.visible = true,
.named = false,
},
[anon_sym_where] = {
.visible = true,
.named = false,
},
[anon_sym_insert] = {
.visible = true,
.named = false,
},
[anon_sym_into] = {
.visible = true,
.named = false,
},
[anon_sym_async] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
[sym_item] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[sym_value] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
2023-10-18 22:18:41 +00:00
[sym_find] = {
.visible = true,
.named = true,
},
2023-10-19 01:50:45 +00:00
[sym_remove] = {
.visible = true,
.named = true,
},
[sym_tool] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_async] = {
.visible = true,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_item_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_insert_repeat1] = {
.visible = false,
.named = false,
},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
2023-10-18 22:18:41 +00:00
[5] = 5,
[6] = 6,
[7] = 7,
[8] = 8,
2023-10-18 23:26:49 +00:00
[9] = 9,
[10] = 10,
2023-10-18 22:18:41 +00:00
[11] = 11,
2023-10-18 23:26:49 +00:00
[12] = 12,
2023-10-19 01:50:45 +00:00
[13] = 9,
[14] = 10,
[15] = 11,
[16] = 16,
[17] = 9,
[18] = 10,
[19] = 11,
[20] = 6,
[21] = 21,
[22] = 22,
[23] = 23,
[24] = 24,
2023-10-18 23:26:49 +00:00
[25] = 25,
[26] = 26,
[27] = 27,
[28] = 28,
2023-10-19 01:50:45 +00:00
[29] = 24,
[30] = 28,
[31] = 24,
[32] = 32,
[33] = 33,
[34] = 34,
[35] = 35,
[36] = 36,
[37] = 37,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 45,
[46] = 46,
[47] = 47,
[48] = 48,
[49] = 49,
2023-10-18 22:18:41 +00:00
[50] = 50,
2023-10-19 01:50:45 +00:00
[51] = 51,
[52] = 51,
2023-10-18 23:26:49 +00:00
[53] = 53,
2023-10-19 01:50:45 +00:00
[54] = 51,
[55] = 55,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
2023-10-18 22:18:41 +00:00
[64] = 64,
[65] = 65,
[66] = 66,
2023-10-19 01:50:45 +00:00
[67] = 67,
[68] = 68,
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 65,
[74] = 74,
2023-10-18 23:26:49 +00:00
[75] = 75,
2023-10-19 01:50:45 +00:00
[76] = 65,
[77] = 72,
2023-10-18 23:26:49 +00:00
[78] = 78,
[79] = 79,
[80] = 80,
2023-10-19 01:50:45 +00:00
[81] = 78,
2023-10-18 23:26:49 +00:00
[82] = 82,
[83] = 83,
2023-10-19 01:50:45 +00:00
[84] = 71,
[85] = 85,
2023-10-19 01:50:45 +00:00
[86] = 78,
[87] = 87,
2023-10-19 01:50:45 +00:00
[88] = 71,
[89] = 72,
[90] = 90,
[91] = 91,
[92] = 92,
[93] = 93,
2023-10-18 22:18:41 +00:00
[94] = 94,
2023-10-19 01:50:45 +00:00
[95] = 91,
[96] = 96,
[97] = 97,
[98] = 98,
2023-10-18 22:18:41 +00:00
[99] = 99,
2023-10-19 01:50:45 +00:00
[100] = 100,
[101] = 101,
[102] = 102,
[103] = 96,
[104] = 102,
[105] = 93,
[106] = 101,
[107] = 107,
[108] = 101,
2023-10-18 23:26:49 +00:00
[109] = 109,
2023-10-19 01:50:45 +00:00
[110] = 110,
[111] = 96,
[112] = 102,
[113] = 32,
[114] = 34,
[115] = 35,
[116] = 33,
2023-10-18 23:26:49 +00:00
[117] = 33,
2023-10-19 01:50:45 +00:00
[118] = 34,
[119] = 32,
2023-10-18 23:26:49 +00:00
[120] = 120,
2023-10-19 01:50:45 +00:00
[121] = 42,
[122] = 39,
[123] = 123,
[124] = 124,
[125] = 43,
2023-10-18 22:18:41 +00:00
[126] = 126,
2023-10-19 01:50:45 +00:00
[127] = 46,
2023-10-18 22:18:41 +00:00
[128] = 128,
2023-10-19 01:50:45 +00:00
[129] = 47,
[130] = 44,
[131] = 131,
[132] = 36,
[133] = 41,
[134] = 50,
[135] = 135,
[136] = 136,
[137] = 137,
[138] = 45,
[139] = 38,
[140] = 49,
[141] = 48,
2023-10-18 23:26:49 +00:00
[142] = 40,
2023-10-19 01:50:45 +00:00
[143] = 37,
[144] = 39,
[145] = 145,
[146] = 37,
[147] = 48,
[148] = 38,
[149] = 45,
[150] = 145,
[151] = 46,
[152] = 41,
[153] = 43,
[154] = 36,
[155] = 42,
[156] = 44,
[157] = 47,
[158] = 40,
2023-10-18 23:26:49 +00:00
[159] = 159,
2023-10-19 01:50:45 +00:00
[160] = 159,
[161] = 53,
[162] = 159,
[163] = 163,
2023-10-19 01:50:45 +00:00
[164] = 164,
2023-10-18 23:26:49 +00:00
[165] = 165,
[166] = 166,
[167] = 167,
[168] = 168,
2023-10-19 01:50:45 +00:00
[169] = 168,
[170] = 170,
2023-10-19 01:50:45 +00:00
[171] = 171,
2023-10-18 23:26:49 +00:00
[172] = 172,
2023-10-19 01:50:45 +00:00
[173] = 172,
[174] = 174,
2023-10-19 01:50:45 +00:00
[175] = 175,
[176] = 174,
[177] = 175,
[178] = 178,
2023-10-18 23:26:49 +00:00
[179] = 179,
2023-10-19 01:50:45 +00:00
[180] = 170,
[181] = 170,
[182] = 174,
[183] = 175,
[184] = 178,
[185] = 178,
[186] = 179,
[187] = 179,
2023-10-18 23:26:49 +00:00
[188] = 188,
2023-10-19 01:50:45 +00:00
[189] = 189,
[190] = 190,
[191] = 191,
2023-10-18 23:26:49 +00:00
[192] = 192,
2023-10-19 01:50:45 +00:00
[193] = 192,
[194] = 192,
[195] = 190,
[196] = 63,
[197] = 190,
[198] = 61,
[199] = 199,
2023-10-18 23:26:49 +00:00
[200] = 200,
2023-10-19 01:50:45 +00:00
[201] = 201,
2023-10-18 23:26:49 +00:00
[202] = 202,
[203] = 203,
2023-10-19 01:50:45 +00:00
[204] = 204,
[205] = 204,
[206] = 206,
[207] = 207,
2023-10-19 01:50:45 +00:00
[208] = 208,
[209] = 209,
2023-10-19 01:50:45 +00:00
[210] = 210,
[211] = 211,
2023-10-18 22:18:41 +00:00
[212] = 212,
[213] = 213,
[214] = 214,
2023-10-19 01:50:45 +00:00
[215] = 204,
2023-10-18 22:18:41 +00:00
[216] = 216,
2023-10-19 01:50:45 +00:00
[217] = 206,
[218] = 208,
[219] = 208,
[220] = 220,
2023-10-18 22:18:41 +00:00
[221] = 221,
2023-10-19 01:50:45 +00:00
[222] = 203,
2023-10-18 23:26:49 +00:00
[223] = 223,
2023-10-18 22:18:41 +00:00
[224] = 224,
2023-10-19 01:50:45 +00:00
[225] = 225,
2023-10-18 23:26:49 +00:00
[226] = 226,
2023-10-19 01:50:45 +00:00
[227] = 227,
2023-10-18 22:18:41 +00:00
[228] = 228,
2023-10-19 01:50:45 +00:00
[229] = 229,
[230] = 230,
[231] = 206,
[232] = 227,
[233] = 211,
[234] = 207,
[235] = 201,
[236] = 224,
2023-10-18 23:26:49 +00:00
[237] = 237,
2023-10-19 01:50:45 +00:00
[238] = 227,
[239] = 207,
[240] = 224,
[241] = 213,
[242] = 242,
[243] = 243,
[244] = 244,
[245] = 245,
[246] = 246,
[247] = 247,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(16);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(43);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(23);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(6);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == '-') ADVANCE(42);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(11);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(6);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(39);
if (lookahead == '-') ADVANCE(41);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(7);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 3:
if (lookahead == '"') ADVANCE(29);
if (lookahead != 0) ADVANCE(3);
END_STATE();
case 4:
if (lookahead == '&') ADVANCE(49);
END_STATE();
case 5:
if (lookahead == '\'') ADVANCE(29);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '=') ADVANCE(48);
END_STATE();
case 7:
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 8:
if (lookahead == '`') ADVANCE(29);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == 'f') ADVANCE(56);
END_STATE();
case 10:
if (lookahead == 'i') ADVANCE(9);
END_STATE();
case 11:
if (lookahead == '|') ADVANCE(50);
END_STATE();
case 12:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 13:
if (eof) ADVANCE(16);
if (lookahead == '!') ADVANCE(6);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '%') ADVANCE(46);
if (lookahead == '&') ADVANCE(4);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == '*') ADVANCE(44);
if (lookahead == '+') ADVANCE(40);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(43);
if (lookahead == '/') ADVANCE(45);
if (lookahead == '<') ADVANCE(33);
if (lookahead == '=') ADVANCE(38);
if (lookahead == '>') ADVANCE(35);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '|') ADVANCE(25);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(13)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 14:
if (eof) ADVANCE(16);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == ')') ADVANCE(20);
if (lookahead == ',') ADVANCE(31);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '>') ADVANCE(34);
if (lookahead == '[') ADVANCE(30);
if (lookahead == ']') ADVANCE(32);
if (lookahead == '`') ADVANCE(8);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(14)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(26);
END_STATE();
case 15:
if (eof) ADVANCE(16);
if (lookahead == '"') ADVANCE(3);
if (lookahead == '#') ADVANCE(17);
if (lookahead == '\'') ADVANCE(5);
if (lookahead == '(') ADVANCE(19);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '[') ADVANCE(30);
if (lookahead == '`') ADVANCE(8);
if (lookahead == 'e') ADVANCE(23);
if (lookahead == '{') ADVANCE(36);
if (lookahead == '}') ADVANCE(37);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(15)
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
if (lookahead == '.' ||
('_' <= lookahead && lookahead <= '|')) ADVANCE(26);
END_STATE();
case 16:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 17:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead == '#') ADVANCE(17);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(18);
END_STATE();
case 18:
ACCEPT_TOKEN(aux_sym_comment_token1);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(18);
END_STATE();
case 19:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 20:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 21:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 22:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(57);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 23:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(24);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 24:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(22);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 25:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == '|') ADVANCE(51);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(26);
END_STATE();
case 26:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 27:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(28);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 28:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28);
END_STATE();
case 29:
ACCEPT_TOKEN(sym_string);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(53);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(52);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(47);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(54);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(55);
END_STATE();
case 43:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(55);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(27);
END_STATE();
case 44:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 46:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 47:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 50:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_else);
if (lookahead == ' ') ADVANCE(10);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(21);
if (lookahead == '.' ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z') ||
lookahead == '|') ADVANCE(26);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'a') ADVANCE(1);
if (lookahead == 'b') ADVANCE(2);
if (lookahead == 'f') ADVANCE(3);
if (lookahead == 'h') ADVANCE(4);
if (lookahead == 'i') ADVANCE(5);
if (lookahead == 'l') ADVANCE(6);
if (lookahead == 'o') ADVANCE(7);
if (lookahead == 'r') ADVANCE(8);
if (lookahead == 's') ADVANCE(9);
if (lookahead == 't') ADVANCE(10);
if (lookahead == 'w') ADVANCE(11);
if (lookahead == 'z') ADVANCE(12);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
if (lookahead == 's') ADVANCE(13);
END_STATE();
case 2:
if (lookahead == 'a') ADVANCE(14);
END_STATE();
case 3:
if (lookahead == 'a') ADVANCE(15);
if (lookahead == 'i') ADVANCE(16);
if (lookahead == 'o') ADVANCE(17);
if (lookahead == 'r') ADVANCE(18);
if (lookahead == 'u') ADVANCE(19);
END_STATE();
case 4:
if (lookahead == 'e') ADVANCE(20);
END_STATE();
case 5:
if (lookahead == 'f') ADVANCE(21);
if (lookahead == 'n') ADVANCE(22);
END_STATE();
case 6:
if (lookahead == 'e') ADVANCE(23);
END_STATE();
case 7:
if (lookahead == 'u') ADVANCE(24);
END_STATE();
case 8:
if (lookahead == 'a') ADVANCE(25);
if (lookahead == 'e') ADVANCE(26);
END_STATE();
case 9:
if (lookahead == 'e') ADVANCE(27);
if (lookahead == 'h') ADVANCE(28);
if (lookahead == 'o') ADVANCE(29);
END_STATE();
case 10:
if (lookahead == 'a') ADVANCE(30);
if (lookahead == 'o') ADVANCE(31);
if (lookahead == 'r') ADVANCE(32);
END_STATE();
case 11:
if (lookahead == 'h') ADVANCE(33);
if (lookahead == 'r') ADVANCE(34);
END_STATE();
case 12:
if (lookahead == 's') ADVANCE(35);
END_STATE();
case 13:
if (lookahead == 's') ADVANCE(36);
if (lookahead == 'y') ADVANCE(37);
END_STATE();
case 14:
if (lookahead == 's') ADVANCE(38);
END_STATE();
case 15:
if (lookahead == 'l') ADVANCE(39);
END_STATE();
case 16:
if (lookahead == 'l') ADVANCE(40);
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(41);
if (lookahead == 's') ADVANCE(42);
END_STATE();
case 17:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(43);
END_STATE();
case 18:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(44);
END_STATE();
case 19:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(45);
END_STATE();
case 20:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(46);
END_STATE();
case 21:
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 22:
ACCEPT_TOKEN(anon_sym_in);
2023-10-18 22:18:41 +00:00
if (lookahead == 's') ADVANCE(47);
if (lookahead == 't') ADVANCE(48);
END_STATE();
case 23:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(49);
END_STATE();
case 24:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(50);
END_STATE();
case 25:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(51);
if (lookahead == 'w') ADVANCE(52);
END_STATE();
case 26:
2023-10-18 22:18:41 +00:00
if (lookahead == 'a') ADVANCE(53);
2023-10-19 01:50:45 +00:00
if (lookahead == 'm') ADVANCE(54);
END_STATE();
case 27:
2023-10-19 01:50:45 +00:00
if (lookahead == 'l') ADVANCE(55);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 29:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(56);
END_STATE();
case 30:
2023-10-19 01:50:45 +00:00
if (lookahead == 'b') ADVANCE(57);
END_STATE();
case 31:
2023-10-19 01:50:45 +00:00
if (lookahead == '_') ADVANCE(58);
END_STATE();
case 32:
2023-10-19 01:50:45 +00:00
if (lookahead == 'a') ADVANCE(59);
if (lookahead == 'u') ADVANCE(60);
END_STATE();
case 33:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(61);
if (lookahead == 'i') ADVANCE(62);
END_STATE();
case 34:
2023-10-19 01:50:45 +00:00
if (lookahead == 'i') ADVANCE(63);
END_STATE();
case 35:
2023-10-19 01:50:45 +00:00
if (lookahead == 'h') ADVANCE(64);
END_STATE();
case 36:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(65);
END_STATE();
case 37:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(66);
END_STATE();
case 38:
2023-10-19 01:50:45 +00:00
if (lookahead == 'h') ADVANCE(67);
END_STATE();
case 39:
2023-10-19 01:50:45 +00:00
if (lookahead == 's') ADVANCE(68);
END_STATE();
case 40:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(69);
END_STATE();
case 41:
2023-10-19 01:50:45 +00:00
if (lookahead == 'd') ADVANCE(70);
END_STATE();
case 42:
2023-10-19 01:50:45 +00:00
if (lookahead == 'h') ADVANCE(71);
END_STATE();
case 43:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 44:
2023-10-19 01:50:45 +00:00
if (lookahead == 'm') ADVANCE(72);
END_STATE();
case 45:
2023-10-19 01:50:45 +00:00
if (lookahead == 'c') ADVANCE(73);
END_STATE();
case 46:
2023-10-19 01:50:45 +00:00
if (lookahead == 'p') ADVANCE(74);
END_STATE();
case 47:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(75);
END_STATE();
case 48:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(76);
END_STATE();
case 49:
2023-10-19 01:50:45 +00:00
if (lookahead == 'g') ADVANCE(77);
END_STATE();
case 50:
2023-10-19 01:50:45 +00:00
if (lookahead == 'p') ADVANCE(78);
END_STATE();
case 51:
2023-10-19 01:50:45 +00:00
if (lookahead == 'd') ADVANCE(79);
END_STATE();
case 52:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 53:
2023-10-19 01:50:45 +00:00
if (lookahead == 'd') ADVANCE(80);
END_STATE();
case 54:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(81);
END_STATE();
case 55:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(82);
END_STATE();
case 56:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(83);
END_STATE();
case 57:
2023-10-19 01:50:45 +00:00
if (lookahead == 'l') ADVANCE(84);
END_STATE();
case 58:
2023-10-19 01:50:45 +00:00
if (lookahead == 'c') ADVANCE(85);
if (lookahead == 'j') ADVANCE(86);
END_STATE();
case 59:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(87);
END_STATE();
case 60:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(88);
END_STATE();
case 61:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(89);
END_STATE();
case 62:
2023-10-19 01:50:45 +00:00
if (lookahead == 'l') ADVANCE(90);
END_STATE();
case 63:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(91);
END_STATE();
case 64:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
END_STATE();
case 65:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(92);
END_STATE();
case 66:
2023-10-19 01:50:45 +00:00
if (lookahead == 'c') ADVANCE(93);
END_STATE();
case 67:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_bash);
END_STATE();
case 68:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(94);
END_STATE();
case 69:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(95);
END_STATE();
case 70:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_find);
END_STATE();
case 71:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_fish);
END_STATE();
case 72:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(96);
END_STATE();
case 73:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(97);
END_STATE();
case 74:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_help);
END_STATE();
case 75:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(98);
END_STATE();
case 76:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_into);
END_STATE();
case 77:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(99);
END_STATE();
case 78:
2023-10-19 01:50:45 +00:00
if (lookahead == 'u') ADVANCE(100);
END_STATE();
case 79:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(101);
END_STATE();
case 80:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_read);
END_STATE();
case 81:
2023-10-19 01:50:45 +00:00
if (lookahead == 'v') ADVANCE(102);
END_STATE();
case 82:
2023-10-19 01:50:45 +00:00
if (lookahead == 'c') ADVANCE(103);
END_STATE();
case 83:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_sort);
END_STATE();
case 84:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(104);
END_STATE();
case 85:
2023-10-19 01:50:45 +00:00
if (lookahead == 's') ADVANCE(105);
END_STATE();
case 86:
2023-10-19 01:50:45 +00:00
if (lookahead == 's') ADVANCE(106);
END_STATE();
case 87:
2023-10-19 01:50:45 +00:00
if (lookahead == 's') ADVANCE(107);
END_STATE();
case 88:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 89:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(108);
END_STATE();
case 90:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(109);
END_STATE();
case 91:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(110);
END_STATE();
case 92:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(111);
END_STATE();
case 93:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 94:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 95:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(112);
END_STATE();
case 96:
2023-10-19 01:50:45 +00:00
if (lookahead == 'c') ADVANCE(113);
if (lookahead == 'j') ADVANCE(114);
END_STATE();
case 97:
2023-10-19 01:50:45 +00:00
if (lookahead == 'i') ADVANCE(115);
END_STATE();
case 98:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(116);
END_STATE();
case 99:
2023-10-19 01:50:45 +00:00
if (lookahead == 'h') ADVANCE(117);
END_STATE();
case 100:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(118);
END_STATE();
case 101:
2023-10-19 01:50:45 +00:00
if (lookahead == 'm') ADVANCE(119);
END_STATE();
case 102:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(120);
END_STATE();
case 103:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(121);
END_STATE();
case 104:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_table);
END_STATE();
case 105:
2023-10-19 01:50:45 +00:00
if (lookahead == 'v') ADVANCE(122);
END_STATE();
case 106:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(123);
END_STATE();
case 107:
2023-10-19 01:50:45 +00:00
if (lookahead == 'f') ADVANCE(124);
END_STATE();
case 108:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_where);
END_STATE();
case 109:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 110:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_write);
END_STATE();
case 111:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(125);
END_STATE();
case 112:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_filter);
END_STATE();
case 113:
2023-10-19 01:50:45 +00:00
if (lookahead == 's') ADVANCE(126);
END_STATE();
case 114:
2023-10-19 01:50:45 +00:00
if (lookahead == 's') ADVANCE(127);
END_STATE();
case 115:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(128);
END_STATE();
case 116:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_insert);
END_STATE();
case 117:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_length);
END_STATE();
case 118:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_output);
END_STATE();
case 119:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(129);
END_STATE();
case 120:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_remove);
END_STATE();
case 121:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_select);
END_STATE();
case 122:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_to_csv);
END_STATE();
case 123:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(130);
END_STATE();
case 124:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(131);
END_STATE();
case 125:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(132);
END_STATE();
case 126:
2023-10-19 01:50:45 +00:00
if (lookahead == 'v') ADVANCE(133);
END_STATE();
case 127:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(134);
END_STATE();
case 128:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(135);
END_STATE();
case 129:
2023-10-19 01:50:45 +00:00
if (lookahead == 'b') ADVANCE(136);
if (lookahead == 'f') ADVANCE(137);
if (lookahead == 'i') ADVANCE(138);
if (lookahead == 's') ADVANCE(139);
END_STATE();
case 130:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
END_STATE();
case 131:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(140);
END_STATE();
case 132:
2023-10-19 01:50:45 +00:00
if (lookahead == 'q') ADVANCE(141);
END_STATE();
case 133:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_from_csv);
END_STATE();
case 134:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(142);
END_STATE();
case 135:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_function);
END_STATE();
case 136:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(143);
END_STATE();
case 137:
2023-10-19 01:50:45 +00:00
if (lookahead == 'l') ADVANCE(144);
END_STATE();
case 138:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(145);
END_STATE();
case 139:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(146);
END_STATE();
case 140:
2023-10-19 01:50:45 +00:00
if (lookahead == 'm') ADVANCE(147);
END_STATE();
case 141:
2023-10-19 01:50:45 +00:00
if (lookahead == 'u') ADVANCE(148);
END_STATE();
case 142:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
END_STATE();
case 143:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(149);
END_STATE();
case 144:
2023-10-19 01:50:45 +00:00
if (lookahead == 'o') ADVANCE(150);
END_STATE();
case 145:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(151);
END_STATE();
case 146:
2023-10-19 01:50:45 +00:00
if (lookahead == 'r') ADVANCE(152);
END_STATE();
case 147:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_transform);
END_STATE();
case 148:
2023-10-19 01:50:45 +00:00
if (lookahead == 'a') ADVANCE(153);
END_STATE();
case 149:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(154);
END_STATE();
case 150:
2023-10-19 01:50:45 +00:00
if (lookahead == 'a') ADVANCE(155);
END_STATE();
case 151:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(156);
END_STATE();
case 152:
2023-10-19 01:50:45 +00:00
if (lookahead == 'i') ADVANCE(157);
END_STATE();
case 153:
2023-10-19 01:50:45 +00:00
if (lookahead == 'l') ADVANCE(158);
END_STATE();
case 154:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(159);
END_STATE();
case 155:
2023-10-19 01:50:45 +00:00
if (lookahead == 't') ADVANCE(160);
END_STATE();
case 156:
2023-10-19 01:50:45 +00:00
if (lookahead == 'g') ADVANCE(161);
END_STATE();
case 157:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(162);
END_STATE();
case 158:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_assert_equal);
END_STATE();
case 159:
2023-10-19 01:50:45 +00:00
if (lookahead == 'a') ADVANCE(163);
END_STATE();
case 160:
2023-10-19 01:50:45 +00:00
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 161:
2023-10-19 01:50:45 +00:00
if (lookahead == 'e') ADVANCE(164);
2023-10-18 22:18:41 +00:00
END_STATE();
case 162:
2023-10-19 01:50:45 +00:00
if (lookahead == 'g') ADVANCE(165);
2023-10-18 22:18:41 +00:00
END_STATE();
case 163:
2023-10-19 01:50:45 +00:00
if (lookahead == 'n') ADVANCE(166);
END_STATE();
case 164:
if (lookahead == 'r') ADVANCE(167);
END_STATE();
case 165:
ACCEPT_TOKEN(anon_sym_random_string);
END_STATE();
case 166:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 167:
ACCEPT_TOKEN(anon_sym_random_integer);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 14},
[2] = {.lex_state = 14},
[3] = {.lex_state = 14},
[4] = {.lex_state = 14},
[5] = {.lex_state = 14},
[6] = {.lex_state = 14},
[7] = {.lex_state = 14},
[8] = {.lex_state = 14},
[9] = {.lex_state = 14},
[10] = {.lex_state = 14},
[11] = {.lex_state = 14},
[12] = {.lex_state = 14},
[13] = {.lex_state = 14},
[14] = {.lex_state = 14},
[15] = {.lex_state = 14},
[16] = {.lex_state = 14},
[17] = {.lex_state = 14},
[18] = {.lex_state = 14},
[19] = {.lex_state = 14},
[20] = {.lex_state = 14},
[21] = {.lex_state = 14},
[22] = {.lex_state = 14},
[23] = {.lex_state = 14},
[24] = {.lex_state = 14},
[25] = {.lex_state = 14},
[26] = {.lex_state = 14},
[27] = {.lex_state = 14},
[28] = {.lex_state = 14},
[29] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[30] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[31] = {.lex_state = 14},
[32] = {.lex_state = 13},
[33] = {.lex_state = 13},
[34] = {.lex_state = 13},
[35] = {.lex_state = 13},
[36] = {.lex_state = 13},
[37] = {.lex_state = 13},
[38] = {.lex_state = 13},
[39] = {.lex_state = 13},
[40] = {.lex_state = 13},
[41] = {.lex_state = 13},
[42] = {.lex_state = 13},
[43] = {.lex_state = 13},
[44] = {.lex_state = 13},
[45] = {.lex_state = 13},
[46] = {.lex_state = 13},
[47] = {.lex_state = 13},
[48] = {.lex_state = 13},
[49] = {.lex_state = 13},
[50] = {.lex_state = 13},
[51] = {.lex_state = 13},
[52] = {.lex_state = 13},
[53] = {.lex_state = 13},
[54] = {.lex_state = 13},
2023-10-18 23:26:49 +00:00
[55] = {.lex_state = 15},
2023-10-19 01:50:45 +00:00
[56] = {.lex_state = 13},
2023-10-18 22:18:41 +00:00
[57] = {.lex_state = 15},
[58] = {.lex_state = 15},
2023-10-18 23:26:49 +00:00
[59] = {.lex_state = 15},
2023-10-19 01:50:45 +00:00
[60] = {.lex_state = 15},
2023-10-18 23:26:49 +00:00
[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 = 14},
[69] = {.lex_state = 14},
[70] = {.lex_state = 14},
[71] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[72] = {.lex_state = 14},
[73] = {.lex_state = 14},
[74] = {.lex_state = 14},
[75] = {.lex_state = 14},
[76] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[77] = {.lex_state = 14},
[78] = {.lex_state = 14},
[79] = {.lex_state = 14},
[80] = {.lex_state = 14},
[81] = {.lex_state = 14},
[82] = {.lex_state = 14},
[83] = {.lex_state = 14},
[84] = {.lex_state = 14},
[85] = {.lex_state = 14},
[86] = {.lex_state = 14},
[87] = {.lex_state = 14},
[88] = {.lex_state = 14},
[89] = {.lex_state = 14},
[90] = {.lex_state = 14},
[91] = {.lex_state = 14},
[92] = {.lex_state = 14},
[93] = {.lex_state = 14},
[94] = {.lex_state = 14},
[95] = {.lex_state = 14},
[96] = {.lex_state = 14},
[97] = {.lex_state = 14},
[98] = {.lex_state = 14},
[99] = {.lex_state = 14},
[100] = {.lex_state = 14},
[101] = {.lex_state = 14},
[102] = {.lex_state = 14},
[103] = {.lex_state = 14},
[104] = {.lex_state = 14},
[105] = {.lex_state = 14},
[106] = {.lex_state = 14},
[107] = {.lex_state = 14},
[108] = {.lex_state = 14},
[109] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[110] = {.lex_state = 14},
[111] = {.lex_state = 14},
[112] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[113] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[114] = {.lex_state = 1},
[115] = {.lex_state = 1},
[116] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[117] = {.lex_state = 2},
2023-10-19 01:50:45 +00:00
[118] = {.lex_state = 2},
[119] = {.lex_state = 2},
[120] = {.lex_state = 2},
2023-10-18 23:26:49 +00:00
[121] = {.lex_state = 1},
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
[126] = {.lex_state = 1},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 1},
[130] = {.lex_state = 1},
[131] = {.lex_state = 1},
[132] = {.lex_state = 1},
[133] = {.lex_state = 1},
[134] = {.lex_state = 1},
[135] = {.lex_state = 1},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
[139] = {.lex_state = 1},
2023-10-19 01:50:45 +00:00
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
2023-10-18 22:18:41 +00:00
[143] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[144] = {.lex_state = 2},
2023-10-19 01:50:45 +00:00
[145] = {.lex_state = 1},
[146] = {.lex_state = 2},
2023-10-19 01:50:45 +00:00
[147] = {.lex_state = 2},
2023-10-18 23:26:49 +00:00
[148] = {.lex_state = 2},
[149] = {.lex_state = 2},
2023-10-19 01:50:45 +00:00
[150] = {.lex_state = 1},
[151] = {.lex_state = 2},
[152] = {.lex_state = 2},
[153] = {.lex_state = 2},
[154] = {.lex_state = 2},
2023-10-19 01:50:45 +00:00
[155] = {.lex_state = 2},
[156] = {.lex_state = 2},
[157] = {.lex_state = 2},
[158] = {.lex_state = 2},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 1},
[162] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[163] = {.lex_state = 14},
[164] = {.lex_state = 14},
[165] = {.lex_state = 14},
[166] = {.lex_state = 14},
[167] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[168] = {.lex_state = 14},
[169] = {.lex_state = 14},
[170] = {.lex_state = 14},
[171] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[172] = {.lex_state = 0},
[173] = {.lex_state = 0},
[174] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[175] = {.lex_state = 14},
[176] = {.lex_state = 14},
[177] = {.lex_state = 14},
[178] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[179] = {.lex_state = 14},
[180] = {.lex_state = 14},
[181] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[182] = {.lex_state = 14},
[183] = {.lex_state = 14},
[184] = {.lex_state = 14},
[185] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[186] = {.lex_state = 14},
[187] = {.lex_state = 14},
[188] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[189] = {.lex_state = 14},
[190] = {.lex_state = 14},
[191] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[192] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[193] = {.lex_state = 0},
[194] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[195] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[196] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[197] = {.lex_state = 14},
[198] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[199] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[200] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[201] = {.lex_state = 14},
[202] = {.lex_state = 14},
[203] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[204] = {.lex_state = 0},
[205] = {.lex_state = 0},
[206] = {.lex_state = 0},
[207] = {.lex_state = 0},
[208] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[209] = {.lex_state = 14},
[210] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[211] = {.lex_state = 14},
[212] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[213] = {.lex_state = 14},
[214] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[215] = {.lex_state = 0},
[216] = {.lex_state = 0},
[217] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[218] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[219] = {.lex_state = 0},
[220] = {.lex_state = 14},
2023-10-19 01:50:45 +00:00
[221] = {.lex_state = 0},
[222] = {.lex_state = 14},
[223] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[224] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[225] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[226] = {.lex_state = 14},
[227] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[228] = {.lex_state = 0},
[229] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[230] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[231] = {.lex_state = 0},
[232] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[233] = {.lex_state = 14},
[234] = {.lex_state = 0},
[235] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[236] = {.lex_state = 0},
[237] = {.lex_state = 0},
[238] = {.lex_state = 0},
[239] = {.lex_state = 0},
2023-10-19 01:50:45 +00:00
[240] = {.lex_state = 0},
[241] = {.lex_state = 14},
[242] = {.lex_state = 0},
[243] = {.lex_state = 14},
[244] = {.lex_state = 0},
[245] = {.lex_state = 0},
[246] = {.lex_state = 0},
[247] = {.lex_state = 0},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[aux_sym_comment_token1] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[sym_integer] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_function] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_transform] = ACTIONS(1),
[anon_sym_filter] = ACTIONS(1),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(1),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(1),
[anon_sym_assert] = ACTIONS(1),
[anon_sym_assert_equal] = ACTIONS(1),
[anon_sym_output] = ACTIONS(1),
[anon_sym_read] = ACTIONS(1),
[anon_sym_write] = ACTIONS(1),
[anon_sym_raw] = ACTIONS(1),
[anon_sym_sh] = ACTIONS(1),
[anon_sym_bash] = ACTIONS(1),
[anon_sym_fish] = ACTIONS(1),
[anon_sym_zsh] = ACTIONS(1),
[anon_sym_random] = ACTIONS(1),
[anon_sym_random_boolean] = ACTIONS(1),
[anon_sym_random_float] = ACTIONS(1),
[anon_sym_random_string] = ACTIONS(1),
[anon_sym_random_integer] = ACTIONS(1),
[anon_sym_length] = ACTIONS(1),
[anon_sym_sort] = ACTIONS(1),
[anon_sym_to_csv] = ACTIONS(1),
[anon_sym_from_csv] = ACTIONS(1),
[anon_sym_to_json] = ACTIONS(1),
[anon_sym_from_json] = ACTIONS(1),
[anon_sym_help] = ACTIONS(1),
[anon_sym_select] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
[anon_sym_where] = ACTIONS(1),
[anon_sym_insert] = ACTIONS(1),
[anon_sym_into] = ACTIONS(1),
[anon_sym_async] = ACTIONS(1),
},
[1] = {
2023-10-19 01:50:45 +00:00
[sym_root] = STATE(246),
[sym_item] = STATE(3),
2023-10-18 23:26:49 +00:00
[sym_statement] = STATE(6),
2023-10-19 01:50:45 +00:00
[sym_comment] = STATE(74),
[sym_expression] = STATE(49),
[sym__expression_kind] = STATE(48),
[sym_value] = STATE(48),
[sym_boolean] = STATE(45),
[sym_list] = STATE(45),
[sym_function] = STATE(45),
[sym_table] = STATE(45),
[sym_map] = STATE(45),
[sym_math] = STATE(48),
[sym_logic] = STATE(48),
[sym_assignment] = STATE(74),
[sym_if_else] = STATE(74),
2023-10-18 23:26:49 +00:00
[sym_if] = STATE(55),
2023-10-19 01:50:45 +00:00
[sym_function_call] = STATE(48),
[sym_while] = STATE(74),
[sym_for] = STATE(74),
[sym_transform] = STATE(74),
[sym_filter] = STATE(74),
[sym_find] = STATE(74),
[sym_remove] = STATE(74),
[sym_select] = STATE(74),
[sym_insert] = STATE(74),
[sym_async] = STATE(74),
[aux_sym_root_repeat1] = STATE(3),
2023-10-18 23:26:49 +00:00
[aux_sym_item_repeat1] = STATE(6),
[sym_identifier] = ACTIONS(3),
[aux_sym_comment_token1] = ACTIONS(5),
[anon_sym_LPAREN] = ACTIONS(7),
[sym_integer] = ACTIONS(9),
[sym_float] = ACTIONS(11),
[sym_string] = ACTIONS(11),
[anon_sym_true] = ACTIONS(13),
[anon_sym_false] = ACTIONS(13),
[anon_sym_LBRACK] = ACTIONS(15),
[anon_sym_function] = ACTIONS(17),
[anon_sym_LBRACE] = ACTIONS(19),
[anon_sym_table] = ACTIONS(21),
[anon_sym_if] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_transform] = ACTIONS(29),
[anon_sym_filter] = ACTIONS(31),
2023-10-18 22:18:41 +00:00
[anon_sym_find] = ACTIONS(33),
2023-10-19 01:50:45 +00:00
[anon_sym_remove] = ACTIONS(35),
[anon_sym_select] = ACTIONS(37),
[anon_sym_insert] = ACTIONS(39),
[anon_sym_async] = ACTIONS(41),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-19 01:50:45 +00:00
[0] = 28,
ACTIONS(43), 1,
ts_builtin_sym_end,
ACTIONS(45), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(48), 1,
2023-10-18 22:18:41 +00:00
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
ACTIONS(51), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(54), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(63), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(66), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(69), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(72), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(75), 1,
2023-10-18 22:18:41 +00:00
anon_sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(78), 1,
2023-10-18 22:18:41 +00:00
anon_sym_while,
2023-10-19 01:50:45 +00:00
ACTIONS(81), 1,
2023-10-18 22:18:41 +00:00
anon_sym_for,
2023-10-19 01:50:45 +00:00
ACTIONS(84), 1,
2023-10-18 22:18:41 +00:00
anon_sym_transform,
2023-10-19 01:50:45 +00:00
ACTIONS(87), 1,
2023-10-18 22:18:41 +00:00
anon_sym_filter,
2023-10-19 01:50:45 +00:00
ACTIONS(90), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(93), 1,
anon_sym_remove,
ACTIONS(96), 1,
2023-10-18 22:18:41 +00:00
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(99), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
2023-10-19 01:50:45 +00:00
ACTIONS(102), 1,
2023-10-18 22:18:41 +00:00
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
2023-10-18 22:18:41 +00:00
sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(57), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(60), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(2), 2,
2023-10-18 22:18:41 +00:00
sym_item,
aux_sym_root_repeat1,
2023-10-18 23:26:49 +00:00
STATE(6), 2,
2023-10-18 22:18:41 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
2023-10-18 22:18:41 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
2023-10-18 22:18:41 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[108] = 28,
ACTIONS(3), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(5), 1,
2023-10-18 22:18:41 +00:00
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(23), 1,
2023-10-18 22:18:41 +00:00
anon_sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(25), 1,
2023-10-18 22:18:41 +00:00
anon_sym_while,
2023-10-19 01:50:45 +00:00
ACTIONS(27), 1,
2023-10-18 22:18:41 +00:00
anon_sym_for,
2023-10-19 01:50:45 +00:00
ACTIONS(29), 1,
2023-10-18 22:18:41 +00:00
anon_sym_transform,
2023-10-19 01:50:45 +00:00
ACTIONS(31), 1,
2023-10-18 22:18:41 +00:00
anon_sym_filter,
2023-10-19 01:50:45 +00:00
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(39), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
2023-10-19 01:50:45 +00:00
ACTIONS(41), 1,
2023-10-18 22:18:41 +00:00
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(105), 1,
ts_builtin_sym_end,
STATE(49), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
2023-10-18 22:18:41 +00:00
sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(2), 2,
2023-10-18 22:18:41 +00:00
sym_item,
aux_sym_root_repeat1,
2023-10-18 23:26:49 +00:00
STATE(6), 2,
2023-10-18 22:18:41 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
2023-10-18 22:18:41 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
2023-10-18 22:18:41 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[216] = 27,
ACTIONS(109), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(112), 1,
aux_sym_comment_token1,
2023-10-19 01:50:45 +00:00
ACTIONS(115), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(118), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(127), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(130), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(133), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(136), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(139), 1,
anon_sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(142), 1,
anon_sym_while,
2023-10-19 01:50:45 +00:00
ACTIONS(145), 1,
anon_sym_for,
2023-10-19 01:50:45 +00:00
ACTIONS(148), 1,
anon_sym_transform,
2023-10-19 01:50:45 +00:00
ACTIONS(151), 1,
anon_sym_filter,
2023-10-19 01:50:45 +00:00
ACTIONS(154), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(157), 1,
anon_sym_remove,
ACTIONS(160), 1,
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(163), 1,
anon_sym_insert,
2023-10-19 01:50:45 +00:00
ACTIONS(166), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(107), 2,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(121), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(124), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[321] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(242), 1,
2023-10-18 22:18:41 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
2023-10-18 23:26:49 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
2023-10-18 23:26:49 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[425] = 8,
STATE(49), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
STATE(55), 1,
sym_if,
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
ACTIONS(169), 7,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(171), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[491] = 27,
2023-10-18 22:18:41 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-18 22:18:41 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-18 22:18:41 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-10-18 22:18:41 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-10-18 22:18:41 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-10-18 22:18:41 +00:00
ACTIONS(29), 1,
anon_sym_transform,
2023-10-18 22:18:41 +00:00
ACTIONS(31), 1,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(245), 1,
2023-10-18 23:26:49 +00:00
sym_item,
2023-10-18 22:18:41 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[595] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(228), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[699] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(218), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[803] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(217), 1,
2023-10-18 22:18:41 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[907] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(215), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1011] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(173), 1,
anon_sym_RBRACE,
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(16), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1115] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(208), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1219] = 27,
2023-10-18 23:26:49 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(9), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(21), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 23:26:49 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
2023-10-18 23:26:49 +00:00
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(206), 1,
2023-10-18 23:26:49 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
2023-10-18 23:26:49 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
2023-10-18 23:26:49 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
2023-10-18 23:26:49 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1323] = 27,
ACTIONS(3), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
ACTIONS(39), 1,
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
STATE(49), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(55), 1,
sym_if,
STATE(205), 1,
sym_item,
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(45), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[1427] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(175), 1,
anon_sym_RBRACE,
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1531] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(219), 1,
2023-10-18 23:26:49 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
2023-10-18 23:26:49 +00:00
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
2023-10-18 23:26:49 +00:00
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1635] = 27,
2023-10-18 23:26:49 +00:00
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 23:26:49 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
2023-10-18 23:26:49 +00:00
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(231), 1,
2023-10-18 23:26:49 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
2023-10-18 23:26:49 +00:00
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1739] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(204), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1843] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(169), 1,
anon_sym_RBRACE,
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[1947] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(244), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2051] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(216), 1,
2023-10-18 23:26:49 +00:00
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2155] = 27,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(37), 1,
2023-10-19 01:50:45 +00:00
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
2023-10-19 01:50:45 +00:00
anon_sym_insert,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(229), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(20), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2259] = 14,
ACTIONS(177), 1,
sym_identifier,
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
ACTIONS(193), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
STATE(76), 1,
sym_tool,
STATE(150), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(162), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
ACTIONS(195), 24,
anon_sym_transform,
anon_sym_filter,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_output,
anon_sym_read,
anon_sym_write,
anon_sym_raw,
anon_sym_sh,
anon_sym_bash,
anon_sym_fish,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_string,
anon_sym_random_integer,
anon_sym_length,
anon_sym_sort,
anon_sym_to_csv,
anon_sym_from_csv,
anon_sym_to_json,
anon_sym_from_json,
anon_sym_help,
[2335] = 26,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
ACTIONS(33), 1,
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
ACTIONS(193), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
ACTIONS(197), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(199), 1,
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(201), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(140), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(200), 1,
sym_statement,
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2435] = 26,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
ACTIONS(33), 1,
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
ACTIONS(193), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
ACTIONS(197), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(199), 1,
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(201), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(140), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(221), 1,
2023-10-18 23:26:49 +00:00
sym_statement,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2535] = 26,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(197), 1,
sym_identifier,
ACTIONS(199), 1,
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(201), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
2023-10-18 22:18:41 +00:00
sym_if,
2023-10-19 01:50:45 +00:00
STATE(140), 1,
sym_expression,
STATE(230), 1,
sym_statement,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2635] = 26,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
ACTIONS(193), 1,
2023-10-19 01:50:45 +00:00
anon_sym_table,
ACTIONS(197), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(199), 1,
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(201), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-19 01:50:45 +00:00
STATE(85), 1,
2023-10-18 22:18:41 +00:00
sym_statement,
2023-10-19 01:50:45 +00:00
STATE(140), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
2023-10-18 22:18:41 +00:00
sym_find,
2023-10-19 01:50:45 +00:00
sym_remove,
sym_select,
sym_insert,
sym_async,
2023-10-19 01:50:45 +00:00
[2735] = 14,
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(203), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(65), 1,
sym_tool,
STATE(150), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(159), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(195), 24,
2023-10-18 23:26:49 +00:00
anon_sym_transform,
anon_sym_filter,
2023-10-19 01:50:45 +00:00
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_output,
anon_sym_read,
anon_sym_write,
anon_sym_raw,
anon_sym_sh,
anon_sym_bash,
anon_sym_fish,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_string,
anon_sym_random_integer,
anon_sym_length,
anon_sym_sort,
anon_sym_to_csv,
anon_sym_from_csv,
anon_sym_to_json,
anon_sym_from_json,
anon_sym_help,
[2811] = 26,
ACTIONS(3), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(23), 1,
anon_sym_if,
2023-10-19 01:50:45 +00:00
ACTIONS(25), 1,
anon_sym_while,
2023-10-19 01:50:45 +00:00
ACTIONS(27), 1,
anon_sym_for,
2023-10-19 01:50:45 +00:00
ACTIONS(29), 1,
anon_sym_transform,
2023-10-19 01:50:45 +00:00
ACTIONS(31), 1,
anon_sym_filter,
2023-10-19 01:50:45 +00:00
ACTIONS(33), 1,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
ACTIONS(35), 1,
anon_sym_remove,
ACTIONS(37), 1,
anon_sym_select,
2023-10-19 01:50:45 +00:00
ACTIONS(39), 1,
anon_sym_insert,
2023-10-19 01:50:45 +00:00
ACTIONS(41), 1,
anon_sym_async,
2023-10-19 01:50:45 +00:00
STATE(49), 1,
sym_expression,
STATE(55), 1,
sym_if,
STATE(85), 1,
sym_statement,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(74), 12,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_select,
sym_insert,
sym_async,
[2911] = 14,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(205), 1,
sym_identifier,
STATE(73), 1,
sym_tool,
STATE(150), 1,
sym_expression,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(160), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(195), 24,
anon_sym_transform,
anon_sym_filter,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_output,
anon_sym_read,
anon_sym_write,
anon_sym_raw,
anon_sym_sh,
anon_sym_bash,
anon_sym_fish,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_string,
anon_sym_random_integer,
anon_sym_length,
anon_sym_sort,
anon_sym_to_csv,
anon_sym_from_csv,
anon_sym_to_json,
anon_sym_from_json,
anon_sym_help,
[2987] = 4,
STATE(111), 1,
sym_math_operator,
STATE(112), 1,
sym_logic_operator,
ACTIONS(207), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(209), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3038] = 8,
ACTIONS(219), 1,
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
STATE(111), 1,
sym_math_operator,
STATE(112), 1,
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(211), 11,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(213), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3097] = 8,
ACTIONS(219), 1,
anon_sym_DASH,
STATE(111), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(112), 1,
sym_logic_operator,
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(223), 11,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(225), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3156] = 5,
ACTIONS(231), 1,
2023-10-18 22:18:41 +00:00
anon_sym_EQ,
2023-10-19 01:50:45 +00:00
STATE(30), 1,
2023-10-18 22:18:41 +00:00
sym_assignment_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(233), 2,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(227), 16,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(229), 21,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3208] = 2,
ACTIONS(235), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(237), 21,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_into,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3254] = 2,
ACTIONS(239), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(241), 21,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
2023-10-18 22:18:41 +00:00
anon_sym_into,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3300] = 2,
ACTIONS(243), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(245), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3345] = 2,
ACTIONS(247), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(249), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3390] = 2,
ACTIONS(251), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(253), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3435] = 2,
ACTIONS(255), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(257), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3480] = 2,
ACTIONS(259), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(261), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3525] = 2,
ACTIONS(263), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(265), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3570] = 2,
ACTIONS(267), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(269), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3615] = 2,
ACTIONS(271), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(273), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3660] = 2,
ACTIONS(275), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(277), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3705] = 2,
ACTIONS(279), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(281), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3750] = 2,
ACTIONS(283), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(285), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
2023-10-18 22:18:41 +00:00
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[3795] = 8,
ACTIONS(219), 1,
anon_sym_DASH,
STATE(111), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(112), 1,
sym_logic_operator,
ACTIONS(215), 3,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 4,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(287), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(289), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3851] = 8,
ACTIONS(219), 1,
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
STATE(111), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(112), 1,
sym_logic_operator,
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(291), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(293), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[3907] = 16,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(297), 1,
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(71), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
ACTIONS(229), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
ACTIONS(227), 9,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[3977] = 16,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(299), 1,
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(88), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
ACTIONS(229), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
ACTIONS(227), 9,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[4047] = 4,
ACTIONS(229), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
ACTIONS(301), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(227), 9,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(303), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4093] = 16,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(305), 1,
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(84), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
ACTIONS(229), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
ACTIONS(227), 9,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[4163] = 6,
ACTIONS(311), 1,
anon_sym_elseif,
ACTIONS(313), 1,
anon_sym_else,
STATE(82), 1,
sym_else,
STATE(57), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(307), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(309), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4205] = 9,
ACTIONS(219), 1,
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
ACTIONS(319), 1,
anon_sym_COMMA,
2023-10-19 01:50:45 +00:00
STATE(111), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(112), 1,
sym_logic_operator,
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
ACTIONS(315), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(317), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
[4253] = 6,
2023-10-18 23:26:49 +00:00
ACTIONS(311), 1,
2023-10-19 01:50:45 +00:00
anon_sym_elseif,
ACTIONS(313), 1,
anon_sym_else,
2023-10-19 01:50:45 +00:00
STATE(80), 1,
sym_else,
2023-10-19 01:50:45 +00:00
STATE(58), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-19 01:50:45 +00:00
ACTIONS(321), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(323), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4295] = 4,
ACTIONS(329), 1,
anon_sym_elseif,
2023-10-19 01:50:45 +00:00
STATE(58), 2,
2023-10-18 22:18:41 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-19 01:50:45 +00:00
ACTIONS(325), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(327), 17,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-19 01:50:45 +00:00
anon_sym_else,
2023-10-18 22:18:41 +00:00
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4332] = 2,
ACTIONS(332), 9,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_elseif,
ACTIONS(334), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
2023-10-18 22:18:41 +00:00
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4363] = 2,
ACTIONS(336), 9,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_elseif,
2023-10-19 01:50:45 +00:00
ACTIONS(338), 17,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4394] = 3,
ACTIONS(344), 1,
anon_sym_where,
ACTIONS(340), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(342), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4426] = 14,
ACTIONS(346), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(349), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(354), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(363), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(366), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(369), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(372), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
2023-10-19 01:50:45 +00:00
ACTIONS(352), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(357), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(360), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[4480] = 3,
ACTIONS(379), 1,
anon_sym_where,
ACTIONS(375), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
ACTIONS(377), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4512] = 2,
ACTIONS(381), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(383), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4541] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(299), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(88), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[4594] = 2,
ACTIONS(385), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
ACTIONS(387), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4623] = 2,
ACTIONS(389), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(391), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4652] = 2,
ACTIONS(393), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(395), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4681] = 2,
ACTIONS(397), 8,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(399), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4710] = 2,
ACTIONS(401), 8,
2023-10-18 23:26:49 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(403), 16,
2023-10-18 23:26:49 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 23:26:49 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[4739] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(405), 1,
anon_sym_RPAREN,
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[4792] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(407), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACK,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[4845] = 14,
2023-10-18 22:18:41 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(297), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(71), 1,
2023-10-18 22:18:41 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[4898] = 2,
ACTIONS(287), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
ACTIONS(289), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4927] = 2,
ACTIONS(409), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
ACTIONS(411), 16,
sym_identifier,
2023-10-19 01:50:45 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4956] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(305), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(84), 1,
2023-10-18 22:18:41 +00:00
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5009] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(413), 1,
anon_sym_RBRACK,
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5062] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(415), 1,
anon_sym_RBRACK,
2023-10-19 01:50:45 +00:00
STATE(56), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
STATE(77), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5115] = 2,
ACTIONS(417), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(419), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[5144] = 2,
ACTIONS(421), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(423), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[5173] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
ACTIONS(425), 1,
anon_sym_RBRACK,
STATE(56), 1,
sym_expression,
STATE(72), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5226] = 2,
ACTIONS(321), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(323), 16,
sym_identifier,
2023-10-18 22:18:41 +00:00
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 22:18:41 +00:00
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[5255] = 2,
ACTIONS(427), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(429), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
2023-10-18 22:18:41 +00:00
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[5284] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
ACTIONS(431), 1,
anon_sym_RPAREN,
STATE(56), 1,
sym_expression,
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5337] = 2,
ACTIONS(433), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(435), 16,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[5366] = 14,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(437), 1,
anon_sym_RBRACK,
STATE(56), 1,
sym_expression,
STATE(89), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5419] = 2,
ACTIONS(439), 8,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(441), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
2023-10-19 01:50:45 +00:00
anon_sym_remove,
2023-10-18 22:18:41 +00:00
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-19 01:50:45 +00:00
[5448] = 14,
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(443), 1,
anon_sym_RPAREN,
STATE(56), 1,
sym_expression,
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5501] = 14,
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(445), 1,
anon_sym_RBRACK,
STATE(56), 1,
sym_expression,
STATE(62), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5554] = 12,
ACTIONS(447), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(449), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(451), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(457), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(459), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(461), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(463), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
STATE(120), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(453), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(455), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(147), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(149), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
[5601] = 12,
ACTIONS(7), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(295), 1,
sym_identifier,
STATE(50), 1,
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(45), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5648] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-19 01:50:45 +00:00
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(136), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5695] = 13,
ACTIONS(179), 1,
anon_sym_LPAREN,
ACTIONS(181), 1,
sym_integer,
ACTIONS(187), 1,
anon_sym_LBRACK,
ACTIONS(189), 1,
anon_sym_function,
ACTIONS(191), 1,
anon_sym_LBRACE,
ACTIONS(193), 1,
anon_sym_table,
ACTIONS(465), 1,
sym_identifier,
STATE(150), 1,
sym_expression,
STATE(161), 1,
sym_logic,
ACTIONS(183), 2,
sym_float,
sym_string,
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
STATE(141), 4,
sym__expression_kind,
sym_value,
sym_math,
sym_function_call,
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[5744] = 12,
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(135), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5791] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(134), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5838] = 12,
ACTIONS(447), 1,
sym_identifier,
ACTIONS(449), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(451), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(457), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(459), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(461), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(463), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
STATE(119), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(453), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(455), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(147), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(149), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[5885] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(123), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5932] = 12,
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(137), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[5979] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(128), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6026] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(126), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6073] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(116), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6120] = 12,
ACTIONS(447), 1,
sym_identifier,
ACTIONS(449), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(451), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(457), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(459), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(461), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(463), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
STATE(118), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(453), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(455), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(147), 5,
sym__expression_kind,
sym_value,
sym_math,
2023-10-19 01:50:45 +00:00
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(149), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
[6167] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(113), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6214] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
sym_identifier,
STATE(114), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[6261] = 13,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(53), 1,
sym_logic,
STATE(145), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(141), 4,
sym__expression_kind,
sym_value,
sym_math,
sym_function_call,
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
[6310] = 12,
ACTIONS(447), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(449), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(451), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(457), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(459), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(461), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(463), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
STATE(117), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(453), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(455), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(147), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
STATE(149), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
[6357] = 12,
ACTIONS(179), 1,
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(124), 1,
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6404] = 12,
2023-10-18 22:18:41 +00:00
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-18 22:18:41 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(33), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 23:26:49 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6451] = 12,
ACTIONS(179), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(181), 1,
2023-10-18 23:26:49 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(187), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(189), 1,
2023-10-18 23:26:49 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(191), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(193), 1,
2023-10-18 23:26:49 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(465), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(131), 1,
2023-10-18 23:26:49 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(183), 2,
2023-10-18 23:26:49 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(185), 2,
2023-10-18 23:26:49 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(138), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(141), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6498] = 2,
ACTIONS(469), 6,
aux_sym_comment_token1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
ACTIONS(467), 16,
sym_identifier,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[6525] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(32), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[6572] = 12,
ACTIONS(7), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(9), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-19 01:50:45 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(17), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-19 01:50:45 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(21), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(295), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(34), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-19 01:50:45 +00:00
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-19 01:50:45 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-19 01:50:45 +00:00
STATE(45), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-19 01:50:45 +00:00
STATE(48), 5,
2023-10-18 23:26:49 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-19 01:50:45 +00:00
[6619] = 4,
STATE(103), 1,
2023-10-18 23:26:49 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(209), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(207), 14,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6646] = 6,
STATE(103), 1,
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(223), 3,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6677] = 5,
ACTIONS(231), 1,
anon_sym_EQ,
STATE(28), 1,
sym_assignment_operator,
ACTIONS(233), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(229), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
anon_sym_DASH,
2023-10-19 01:50:45 +00:00
ACTIONS(227), 10,
anon_sym_RBRACE,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6706] = 6,
STATE(103), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(211), 3,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6737] = 7,
ACTIONS(211), 1,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(213), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(96), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6769] = 7,
ACTIONS(223), 1,
anon_sym_RBRACE,
ACTIONS(225), 1,
sym_identifier,
STATE(96), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6801] = 4,
STATE(96), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(209), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(207), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6827] = 7,
ACTIONS(471), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(473), 1,
anon_sym_RBRACE,
STATE(96), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6859] = 2,
ACTIONS(261), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(259), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6880] = 2,
ACTIONS(249), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(247), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6901] = 6,
ACTIONS(475), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
STATE(103), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6930] = 6,
ACTIONS(477), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
STATE(103), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6959] = 2,
ACTIONS(265), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(263), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[6980] = 6,
ACTIONS(479), 1,
anon_sym_LBRACE,
STATE(103), 1,
2023-10-18 23:26:49 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7009] = 2,
ACTIONS(277), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(275), 14,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7030] = 6,
ACTIONS(481), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
STATE(103), 1,
2023-10-18 23:26:49 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7059] = 2,
ACTIONS(281), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(279), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7080] = 2,
ACTIONS(269), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(267), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7101] = 6,
ACTIONS(483), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
STATE(103), 1,
2023-10-18 23:26:49 +00:00
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7130] = 2,
ACTIONS(237), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(235), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7151] = 2,
ACTIONS(257), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(255), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7172] = 6,
ACTIONS(291), 1,
anon_sym_RBRACE,
STATE(103), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7201] = 6,
ACTIONS(485), 1,
anon_sym_LBRACE,
STATE(103), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7230] = 6,
ACTIONS(487), 1,
anon_sym_LBRACE,
STATE(103), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[7259] = 6,
ACTIONS(489), 1,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
STATE(103), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7288] = 2,
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(271), 14,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7309] = 2,
ACTIONS(245), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(243), 14,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7330] = 6,
ACTIONS(287), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(103), 1,
sym_math_operator,
2023-10-19 01:50:45 +00:00
STATE(104), 1,
2023-10-18 23:26:49 +00:00
sym_logic_operator,
2023-10-19 01:50:45 +00:00
ACTIONS(215), 2,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
2023-10-18 22:18:41 +00:00
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7359] = 2,
ACTIONS(285), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(283), 14,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7380] = 2,
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(251), 14,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7401] = 2,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(239), 14,
2023-10-18 23:26:49 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7422] = 2,
ACTIONS(249), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(247), 11,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7442] = 5,
STATE(103), 1,
sym_math_operator,
STATE(112), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7468] = 2,
ACTIONS(241), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(239), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7488] = 2,
ACTIONS(285), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(283), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7508] = 2,
ACTIONS(245), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(243), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7528] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(273), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(271), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7548] = 5,
STATE(103), 1,
sym_math_operator,
STATE(104), 1,
sym_logic_operator,
ACTIONS(215), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(217), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-19 01:50:45 +00:00
ACTIONS(221), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7574] = 2,
ACTIONS(277), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(275), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7594] = 2,
ACTIONS(257), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(255), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7614] = 2,
ACTIONS(265), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(263), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7634] = 2,
ACTIONS(237), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(235), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7654] = 2,
ACTIONS(261), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(259), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7674] = 2,
ACTIONS(269), 4,
2023-10-18 23:26:49 +00:00
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(267), 11,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7694] = 2,
ACTIONS(281), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(279), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7714] = 2,
ACTIONS(253), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-19 01:50:45 +00:00
ACTIONS(251), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7734] = 3,
ACTIONS(491), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(285), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(283), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7755] = 3,
ACTIONS(493), 1,
anon_sym_RPAREN,
2023-10-19 01:50:45 +00:00
ACTIONS(285), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(283), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7776] = 3,
ACTIONS(301), 1,
anon_sym_RBRACE,
ACTIONS(229), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(227), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7797] = 3,
ACTIONS(495), 1,
anon_sym_RPAREN,
ACTIONS(285), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
ACTIONS(283), 11,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-19 01:50:45 +00:00
[7818] = 2,
ACTIONS(497), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(352), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
[7836] = 2,
ACTIONS(499), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
ACTIONS(501), 6,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
[7853] = 2,
ACTIONS(505), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(503), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
[7869] = 2,
ACTIONS(509), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
ACTIONS(507), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-19 01:50:45 +00:00
[7885] = 3,
ACTIONS(511), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(514), 1,
anon_sym_into,
2023-10-19 01:50:45 +00:00
STATE(167), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-19 01:50:45 +00:00
[7896] = 3,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(516), 1,
anon_sym_into,
2023-10-19 01:50:45 +00:00
STATE(167), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-19 01:50:45 +00:00
[7907] = 3,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
ACTIONS(518), 1,
anon_sym_into,
2023-10-19 01:50:45 +00:00
STATE(167), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-19 01:50:45 +00:00
[7918] = 3,
ACTIONS(520), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(522), 1,
2023-10-18 23:26:49 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(188), 1,
2023-10-18 23:26:49 +00:00
aux_sym_map_repeat1,
2023-10-19 01:50:45 +00:00
[7928] = 2,
ACTIONS(526), 1,
anon_sym_COMMA,
ACTIONS(524), 2,
2023-10-18 23:26:49 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
[7936] = 2,
ACTIONS(15), 1,
anon_sym_LBRACK,
STATE(168), 2,
sym_list,
aux_sym_insert_repeat1,
[7944] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-19 01:50:45 +00:00
STATE(169), 2,
2023-10-18 22:18:41 +00:00
sym_list,
aux_sym_insert_repeat1,
2023-10-19 01:50:45 +00:00
[7952] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(530), 1,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(189), 1,
2023-10-18 23:26:49 +00:00
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[7962] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(532), 1,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(174), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[7972] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(534), 1,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(189), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[7982] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(536), 1,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(176), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[7992] = 3,
ACTIONS(520), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(538), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(181), 1,
2023-10-19 01:50:45 +00:00
aux_sym_map_repeat1,
[8002] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(540), 1,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(189), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[8012] = 3,
ACTIONS(520), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(542), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(188), 1,
2023-10-18 22:18:41 +00:00
aux_sym_map_repeat1,
2023-10-19 01:50:45 +00:00
[8022] = 3,
ACTIONS(520), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(544), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(188), 1,
aux_sym_map_repeat1,
2023-10-19 01:50:45 +00:00
[8032] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(546), 1,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(189), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[8042] = 3,
ACTIONS(528), 1,
2023-10-18 23:26:49 +00:00
sym_identifier,
ACTIONS(548), 1,
anon_sym_GT,
2023-10-19 01:50:45 +00:00
STATE(182), 1,
2023-10-18 23:26:49 +00:00
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[8052] = 3,
ACTIONS(520), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(550), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(170), 1,
aux_sym_map_repeat1,
2023-10-19 01:50:45 +00:00
[8062] = 3,
ACTIONS(520), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(552), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(180), 1,
aux_sym_map_repeat1,
2023-10-19 01:50:45 +00:00
[8072] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(554), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
STATE(189), 1,
aux_sym_function_repeat1,
[8082] = 3,
ACTIONS(528), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(556), 1,
2023-10-19 01:50:45 +00:00
anon_sym_GT,
STATE(189), 1,
aux_sym_function_repeat1,
[8092] = 3,
2023-10-18 23:26:49 +00:00
ACTIONS(558), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(561), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
STATE(188), 1,
aux_sym_map_repeat1,
[8102] = 3,
ACTIONS(563), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
ACTIONS(566), 1,
anon_sym_GT,
STATE(189), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[8112] = 2,
ACTIONS(528), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
STATE(179), 1,
aux_sym_function_repeat1,
2023-10-19 01:50:45 +00:00
[8119] = 1,
ACTIONS(566), 2,
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
2023-10-19 01:50:45 +00:00
[8124] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(568), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(570), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
[8131] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(572), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(574), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
[8138] = 2,
2023-10-18 23:26:49 +00:00
ACTIONS(576), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(578), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
[8145] = 2,
ACTIONS(528), 1,
sym_identifier,
STATE(187), 1,
aux_sym_function_repeat1,
[8152] = 2,
ACTIONS(375), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(580), 1,
2023-10-19 01:50:45 +00:00
anon_sym_where,
[8159] = 2,
ACTIONS(528), 1,
sym_identifier,
STATE(186), 1,
aux_sym_function_repeat1,
[8166] = 2,
ACTIONS(340), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(582), 1,
2023-10-19 01:50:45 +00:00
anon_sym_where,
[8173] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(584), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8177] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(586), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8181] = 1,
ACTIONS(588), 1,
sym_identifier,
[8185] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(590), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8189] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(592), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8193] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(594), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8197] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(596), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8201] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(598), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8205] = 1,
ACTIONS(600), 1,
anon_sym_LBRACE,
[8209] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(602), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8213] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(604), 1,
sym_identifier,
2023-10-19 01:50:45 +00:00
[8217] = 1,
ACTIONS(606), 1,
anon_sym_LBRACE,
[8221] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(608), 1,
2023-10-19 01:50:45 +00:00
anon_sym_from,
[8225] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(610), 1,
2023-10-19 01:50:45 +00:00
anon_sym_in,
[8229] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(612), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
[8233] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(614), 1,
anon_sym_in,
2023-10-19 01:50:45 +00:00
[8237] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(616), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8241] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(618), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8245] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(620), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8249] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(622), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8253] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(624), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8257] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(626), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8261] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(628), 1,
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8265] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(630), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8269] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(632), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8273] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(634), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-19 01:50:45 +00:00
[8277] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(636), 1,
2023-10-19 01:50:45 +00:00
anon_sym_in,
[8281] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(638), 1,
2023-10-19 01:50:45 +00:00
anon_sym_in,
[8285] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(640), 1,
anon_sym_LT,
2023-10-19 01:50:45 +00:00
[8289] = 1,
ACTIONS(642), 1,
anon_sym_RBRACE,
[8293] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(644), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8297] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(646), 1,
2023-10-19 01:50:45 +00:00
anon_sym_RBRACE,
[8301] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(648), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-19 01:50:45 +00:00
[8305] = 1,
ACTIONS(650), 1,
anon_sym_LT,
[8309] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(652), 1,
2023-10-19 01:50:45 +00:00
anon_sym_from,
[8313] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(654), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
[8317] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(656), 1,
2023-10-19 01:50:45 +00:00
sym_identifier,
[8321] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(658), 1,
2023-10-19 01:50:45 +00:00
anon_sym_LBRACE,
[8325] = 1,
2023-10-18 23:26:49 +00:00
ACTIONS(660), 1,
2023-10-19 01:50:45 +00:00
anon_sym_EQ,
[8329] = 1,
ACTIONS(662), 1,
anon_sym_LT,
[8333] = 1,
ACTIONS(664), 1,
anon_sym_LBRACE,
[8337] = 1,
ACTIONS(666), 1,
anon_sym_LBRACE,
[8341] = 1,
ACTIONS(668), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-19 01:50:45 +00:00
[8345] = 1,
ACTIONS(670), 1,
anon_sym_RBRACE,
[8349] = 1,
ACTIONS(672), 1,
anon_sym_in,
[8353] = 1,
ACTIONS(674), 1,
anon_sym_RBRACE,
[8357] = 1,
ACTIONS(676), 1,
anon_sym_RBRACE,
[8361] = 1,
ACTIONS(678), 1,
ts_builtin_sym_end,
[8365] = 1,
ACTIONS(680), 1,
anon_sym_LBRACE,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-10-19 01:50:45 +00:00
[SMALL_STATE(3)] = 108,
[SMALL_STATE(4)] = 216,
[SMALL_STATE(5)] = 321,
[SMALL_STATE(6)] = 425,
[SMALL_STATE(7)] = 491,
[SMALL_STATE(8)] = 595,
[SMALL_STATE(9)] = 699,
[SMALL_STATE(10)] = 803,
[SMALL_STATE(11)] = 907,
[SMALL_STATE(12)] = 1011,
[SMALL_STATE(13)] = 1115,
[SMALL_STATE(14)] = 1219,
[SMALL_STATE(15)] = 1323,
[SMALL_STATE(16)] = 1427,
[SMALL_STATE(17)] = 1531,
[SMALL_STATE(18)] = 1635,
[SMALL_STATE(19)] = 1739,
[SMALL_STATE(20)] = 1843,
[SMALL_STATE(21)] = 1947,
[SMALL_STATE(22)] = 2051,
[SMALL_STATE(23)] = 2155,
[SMALL_STATE(24)] = 2259,
[SMALL_STATE(25)] = 2335,
[SMALL_STATE(26)] = 2435,
[SMALL_STATE(27)] = 2535,
[SMALL_STATE(28)] = 2635,
[SMALL_STATE(29)] = 2735,
[SMALL_STATE(30)] = 2811,
[SMALL_STATE(31)] = 2911,
[SMALL_STATE(32)] = 2987,
[SMALL_STATE(33)] = 3038,
[SMALL_STATE(34)] = 3097,
[SMALL_STATE(35)] = 3156,
[SMALL_STATE(36)] = 3208,
[SMALL_STATE(37)] = 3254,
[SMALL_STATE(38)] = 3300,
[SMALL_STATE(39)] = 3345,
[SMALL_STATE(40)] = 3390,
[SMALL_STATE(41)] = 3435,
[SMALL_STATE(42)] = 3480,
[SMALL_STATE(43)] = 3525,
[SMALL_STATE(44)] = 3570,
[SMALL_STATE(45)] = 3615,
[SMALL_STATE(46)] = 3660,
[SMALL_STATE(47)] = 3705,
[SMALL_STATE(48)] = 3750,
[SMALL_STATE(49)] = 3795,
[SMALL_STATE(50)] = 3851,
[SMALL_STATE(51)] = 3907,
[SMALL_STATE(52)] = 3977,
[SMALL_STATE(53)] = 4047,
[SMALL_STATE(54)] = 4093,
[SMALL_STATE(55)] = 4163,
[SMALL_STATE(56)] = 4205,
[SMALL_STATE(57)] = 4253,
[SMALL_STATE(58)] = 4295,
[SMALL_STATE(59)] = 4332,
[SMALL_STATE(60)] = 4363,
[SMALL_STATE(61)] = 4394,
[SMALL_STATE(62)] = 4426,
[SMALL_STATE(63)] = 4480,
[SMALL_STATE(64)] = 4512,
[SMALL_STATE(65)] = 4541,
[SMALL_STATE(66)] = 4594,
[SMALL_STATE(67)] = 4623,
[SMALL_STATE(68)] = 4652,
[SMALL_STATE(69)] = 4681,
[SMALL_STATE(70)] = 4710,
[SMALL_STATE(71)] = 4739,
[SMALL_STATE(72)] = 4792,
[SMALL_STATE(73)] = 4845,
[SMALL_STATE(74)] = 4898,
[SMALL_STATE(75)] = 4927,
[SMALL_STATE(76)] = 4956,
[SMALL_STATE(77)] = 5009,
[SMALL_STATE(78)] = 5062,
[SMALL_STATE(79)] = 5115,
[SMALL_STATE(80)] = 5144,
[SMALL_STATE(81)] = 5173,
[SMALL_STATE(82)] = 5226,
[SMALL_STATE(83)] = 5255,
[SMALL_STATE(84)] = 5284,
[SMALL_STATE(85)] = 5337,
[SMALL_STATE(86)] = 5366,
[SMALL_STATE(87)] = 5419,
[SMALL_STATE(88)] = 5448,
[SMALL_STATE(89)] = 5501,
[SMALL_STATE(90)] = 5554,
[SMALL_STATE(91)] = 5601,
[SMALL_STATE(92)] = 5648,
[SMALL_STATE(93)] = 5695,
[SMALL_STATE(94)] = 5744,
[SMALL_STATE(95)] = 5791,
[SMALL_STATE(96)] = 5838,
[SMALL_STATE(97)] = 5885,
[SMALL_STATE(98)] = 5932,
[SMALL_STATE(99)] = 5979,
[SMALL_STATE(100)] = 6026,
[SMALL_STATE(101)] = 6073,
[SMALL_STATE(102)] = 6120,
[SMALL_STATE(103)] = 6167,
[SMALL_STATE(104)] = 6214,
[SMALL_STATE(105)] = 6261,
[SMALL_STATE(106)] = 6310,
[SMALL_STATE(107)] = 6357,
[SMALL_STATE(108)] = 6404,
[SMALL_STATE(109)] = 6451,
[SMALL_STATE(110)] = 6498,
[SMALL_STATE(111)] = 6525,
[SMALL_STATE(112)] = 6572,
[SMALL_STATE(113)] = 6619,
[SMALL_STATE(114)] = 6646,
[SMALL_STATE(115)] = 6677,
[SMALL_STATE(116)] = 6706,
[SMALL_STATE(117)] = 6737,
[SMALL_STATE(118)] = 6769,
[SMALL_STATE(119)] = 6801,
[SMALL_STATE(120)] = 6827,
[SMALL_STATE(121)] = 6859,
[SMALL_STATE(122)] = 6880,
[SMALL_STATE(123)] = 6901,
[SMALL_STATE(124)] = 6930,
[SMALL_STATE(125)] = 6959,
[SMALL_STATE(126)] = 6980,
[SMALL_STATE(127)] = 7009,
[SMALL_STATE(128)] = 7030,
[SMALL_STATE(129)] = 7059,
[SMALL_STATE(130)] = 7080,
[SMALL_STATE(131)] = 7101,
[SMALL_STATE(132)] = 7130,
[SMALL_STATE(133)] = 7151,
[SMALL_STATE(134)] = 7172,
[SMALL_STATE(135)] = 7201,
[SMALL_STATE(136)] = 7230,
[SMALL_STATE(137)] = 7259,
[SMALL_STATE(138)] = 7288,
[SMALL_STATE(139)] = 7309,
[SMALL_STATE(140)] = 7330,
[SMALL_STATE(141)] = 7359,
[SMALL_STATE(142)] = 7380,
[SMALL_STATE(143)] = 7401,
[SMALL_STATE(144)] = 7422,
[SMALL_STATE(145)] = 7442,
[SMALL_STATE(146)] = 7468,
[SMALL_STATE(147)] = 7488,
[SMALL_STATE(148)] = 7508,
[SMALL_STATE(149)] = 7528,
[SMALL_STATE(150)] = 7548,
[SMALL_STATE(151)] = 7574,
[SMALL_STATE(152)] = 7594,
[SMALL_STATE(153)] = 7614,
[SMALL_STATE(154)] = 7634,
[SMALL_STATE(155)] = 7654,
[SMALL_STATE(156)] = 7674,
[SMALL_STATE(157)] = 7694,
[SMALL_STATE(158)] = 7714,
[SMALL_STATE(159)] = 7734,
[SMALL_STATE(160)] = 7755,
[SMALL_STATE(161)] = 7776,
[SMALL_STATE(162)] = 7797,
[SMALL_STATE(163)] = 7818,
[SMALL_STATE(164)] = 7836,
[SMALL_STATE(165)] = 7853,
[SMALL_STATE(166)] = 7869,
[SMALL_STATE(167)] = 7885,
[SMALL_STATE(168)] = 7896,
[SMALL_STATE(169)] = 7907,
[SMALL_STATE(170)] = 7918,
[SMALL_STATE(171)] = 7928,
[SMALL_STATE(172)] = 7936,
[SMALL_STATE(173)] = 7944,
[SMALL_STATE(174)] = 7952,
[SMALL_STATE(175)] = 7962,
[SMALL_STATE(176)] = 7972,
[SMALL_STATE(177)] = 7982,
[SMALL_STATE(178)] = 7992,
[SMALL_STATE(179)] = 8002,
[SMALL_STATE(180)] = 8012,
[SMALL_STATE(181)] = 8022,
[SMALL_STATE(182)] = 8032,
[SMALL_STATE(183)] = 8042,
[SMALL_STATE(184)] = 8052,
[SMALL_STATE(185)] = 8062,
[SMALL_STATE(186)] = 8072,
[SMALL_STATE(187)] = 8082,
[SMALL_STATE(188)] = 8092,
[SMALL_STATE(189)] = 8102,
[SMALL_STATE(190)] = 8112,
[SMALL_STATE(191)] = 8119,
[SMALL_STATE(192)] = 8124,
[SMALL_STATE(193)] = 8131,
[SMALL_STATE(194)] = 8138,
[SMALL_STATE(195)] = 8145,
[SMALL_STATE(196)] = 8152,
[SMALL_STATE(197)] = 8159,
[SMALL_STATE(198)] = 8166,
[SMALL_STATE(199)] = 8173,
[SMALL_STATE(200)] = 8177,
[SMALL_STATE(201)] = 8181,
[SMALL_STATE(202)] = 8185,
[SMALL_STATE(203)] = 8189,
[SMALL_STATE(204)] = 8193,
[SMALL_STATE(205)] = 8197,
[SMALL_STATE(206)] = 8201,
[SMALL_STATE(207)] = 8205,
[SMALL_STATE(208)] = 8209,
[SMALL_STATE(209)] = 8213,
[SMALL_STATE(210)] = 8217,
[SMALL_STATE(211)] = 8221,
[SMALL_STATE(212)] = 8225,
[SMALL_STATE(213)] = 8229,
[SMALL_STATE(214)] = 8233,
[SMALL_STATE(215)] = 8237,
[SMALL_STATE(216)] = 8241,
[SMALL_STATE(217)] = 8245,
[SMALL_STATE(218)] = 8249,
[SMALL_STATE(219)] = 8253,
[SMALL_STATE(220)] = 8257,
[SMALL_STATE(221)] = 8261,
[SMALL_STATE(222)] = 8265,
[SMALL_STATE(223)] = 8269,
[SMALL_STATE(224)] = 8273,
[SMALL_STATE(225)] = 8277,
[SMALL_STATE(226)] = 8281,
[SMALL_STATE(227)] = 8285,
[SMALL_STATE(228)] = 8289,
[SMALL_STATE(229)] = 8293,
[SMALL_STATE(230)] = 8297,
[SMALL_STATE(231)] = 8301,
[SMALL_STATE(232)] = 8305,
[SMALL_STATE(233)] = 8309,
[SMALL_STATE(234)] = 8313,
[SMALL_STATE(235)] = 8317,
[SMALL_STATE(236)] = 8321,
[SMALL_STATE(237)] = 8325,
[SMALL_STATE(238)] = 8329,
[SMALL_STATE(239)] = 8333,
[SMALL_STATE(240)] = 8337,
[SMALL_STATE(241)] = 8341,
[SMALL_STATE(242)] = 8345,
[SMALL_STATE(243)] = 8349,
[SMALL_STATE(244)] = 8353,
[SMALL_STATE(245)] = 8357,
[SMALL_STATE(246)] = 8361,
[SMALL_STATE(247)] = 8365,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-19 01:50:45 +00:00
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247),
2023-10-18 22:18:41 +00:00
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
2023-10-19 01:50:45 +00:00
[45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(35),
[48] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(83),
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(24),
[54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(45),
[57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(45),
[60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(38),
[63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(78),
[66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(194),
[69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(178),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(227),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(92),
[78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(94),
[81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(223),
[84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(220),
[87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(199),
[90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(209),
[93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(202),
[96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(213),
[99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(173),
[102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(247),
[105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
[109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(35),
[112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(83),
[115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(24),
[118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(45),
[121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(45),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(38),
[127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(78),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(194),
[133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(178),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(227),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(92),
[142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(94),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(223),
[148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(220),
[151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(199),
[154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(209),
[157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(202),
[160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(213),
[163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(173),
[166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(247),
[169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232),
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164),
[197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115),
[199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
[201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52),
[205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51),
[207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165),
[217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166),
[221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110),
[233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
2023-10-18 23:26:49 +00:00
[259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
2023-10-19 01:50:45 +00:00
[267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48),
[297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6),
[303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210),
[315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(109),
[332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4),
[342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4),
[344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(48),
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(24),
[352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[354] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(45),
[357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(45),
[360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(38),
[363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(78),
[366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(194),
[369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(178),
[372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(227),
[375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 7),
[387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 7),
[389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
[453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148),
[457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
[461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238),
[465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141),
[467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3),
[473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1),
[501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1),
[503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), SHIFT_REPEAT(78),
[514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(237),
[561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(171),
[566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
2023-10-18 23:26:49 +00:00
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
2023-10-19 01:50:45 +00:00
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[678] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_dust(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif