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

9301 lines
217 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-18 23:26:49 +00:00
#define STATE_COUNT 241
#define LARGE_STATE_COUNT 2
2023-10-18 23:26:49 +00:00
#define SYMBOL_COUNT 109
#define ALIAS_COUNT 0
2023-10-18 22:18:41 +00:00
#define TOKEN_COUNT 70
#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,
anon_sym_assert = 42,
anon_sym_assert_equal = 43,
anon_sym_output = 44,
anon_sym_read = 45,
anon_sym_write = 46,
anon_sym_raw = 47,
anon_sym_sh = 48,
anon_sym_bash = 49,
anon_sym_fish = 50,
anon_sym_zsh = 51,
anon_sym_random = 52,
anon_sym_random_boolean = 53,
anon_sym_random_float = 54,
anon_sym_random_string = 55,
anon_sym_random_integer = 56,
anon_sym_length = 57,
anon_sym_sort = 58,
anon_sym_to_csv = 59,
anon_sym_from_csv = 60,
anon_sym_to_json = 61,
anon_sym_from_json = 62,
anon_sym_help = 63,
anon_sym_select = 64,
anon_sym_from = 65,
anon_sym_where = 66,
anon_sym_insert = 67,
anon_sym_into = 68,
anon_sym_async = 69,
sym_root = 70,
sym_item = 71,
sym_statement = 72,
sym_comment = 73,
sym_expression = 74,
sym__expression_kind = 75,
sym_value = 76,
sym_boolean = 77,
sym_list = 78,
sym_function = 79,
sym_table = 80,
sym_map = 81,
sym_math = 82,
sym_math_operator = 83,
sym_logic = 84,
sym_logic_operator = 85,
sym_assignment = 86,
sym_assignment_operator = 87,
sym_if_else = 88,
sym_if = 89,
sym_else_if = 90,
sym_else = 91,
sym_function_call = 92,
sym_while = 93,
sym_for = 94,
sym_transform = 95,
sym_filter = 96,
sym_find = 97,
sym_tool = 98,
sym_select = 99,
sym_insert = 100,
sym_async = 101,
aux_sym_root_repeat1 = 102,
aux_sym_item_repeat1 = 103,
aux_sym_list_repeat1 = 104,
aux_sym_function_repeat1 = 105,
2023-10-18 23:26:49 +00:00
aux_sym_map_repeat1 = 106,
aux_sym_if_else_repeat1 = 107,
aux_sym_insert_repeat1 = 108,
};
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",
[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",
[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,
[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,
[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,
},
[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,
},
[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,
[13] = 6,
[14] = 14,
[15] = 15,
2023-10-18 23:26:49 +00:00
[16] = 10,
[17] = 11,
[18] = 12,
[19] = 15,
[20] = 20,
[21] = 15,
[22] = 12,
[23] = 10,
[24] = 11,
[25] = 25,
[26] = 26,
[27] = 27,
[28] = 28,
2023-10-18 23:26:49 +00:00
[29] = 27,
[30] = 30,
[31] = 31,
[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-18 23:26:49 +00:00
[51] = 50,
[52] = 50,
[53] = 53,
[54] = 54,
[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-18 23:26:49 +00:00
[67] = 66,
[68] = 62,
[69] = 61,
[70] = 66,
[71] = 63,
[72] = 63,
[73] = 62,
[74] = 61,
[75] = 75,
[76] = 76,
[77] = 77,
[78] = 78,
[79] = 79,
[80] = 80,
[81] = 81,
[82] = 82,
[83] = 83,
[84] = 84,
[85] = 85,
[86] = 86,
[87] = 87,
[88] = 88,
[89] = 89,
[90] = 90,
[91] = 91,
[92] = 92,
[93] = 93,
2023-10-18 22:18:41 +00:00
[94] = 94,
2023-10-18 23:26:49 +00:00
[95] = 94,
[96] = 93,
[97] = 97,
[98] = 98,
2023-10-18 22:18:41 +00:00
[99] = 99,
2023-10-18 23:26:49 +00:00
[100] = 94,
[101] = 97,
[102] = 93,
[103] = 103,
2023-10-18 23:26:49 +00:00
[104] = 97,
[105] = 89,
[106] = 106,
[107] = 98,
[108] = 108,
2023-10-18 23:26:49 +00:00
[109] = 109,
[110] = 33,
[111] = 32,
[112] = 31,
[113] = 34,
[114] = 31,
[115] = 32,
[116] = 116,
[117] = 33,
[118] = 47,
[119] = 119,
[120] = 120,
[121] = 121,
2023-10-18 23:26:49 +00:00
[122] = 42,
[123] = 49,
[124] = 40,
[125] = 125,
2023-10-18 22:18:41 +00:00
[126] = 126,
2023-10-18 23:26:49 +00:00
[127] = 38,
2023-10-18 22:18:41 +00:00
[128] = 128,
[129] = 129,
2023-10-18 23:26:49 +00:00
[130] = 43,
[131] = 35,
[132] = 44,
[133] = 45,
2023-10-18 22:18:41 +00:00
[134] = 39,
2023-10-18 23:26:49 +00:00
[135] = 41,
[136] = 48,
[137] = 46,
[138] = 36,
[139] = 37,
2023-10-18 22:18:41 +00:00
[140] = 35,
2023-10-18 23:26:49 +00:00
[141] = 43,
[142] = 40,
[143] = 143,
[144] = 41,
[145] = 46,
[146] = 36,
[147] = 143,
[148] = 37,
[149] = 38,
[150] = 47,
[151] = 45,
[152] = 44,
2023-10-18 22:18:41 +00:00
[153] = 39,
2023-10-18 23:26:49 +00:00
[154] = 42,
[155] = 155,
[156] = 155,
[157] = 155,
[158] = 53,
[159] = 159,
[160] = 160,
[161] = 161,
[162] = 162,
[163] = 163,
2023-10-18 22:18:41 +00:00
[164] = 163,
2023-10-18 23:26:49 +00:00
[165] = 165,
[166] = 166,
[167] = 167,
[168] = 168,
2023-10-18 22:18:41 +00:00
[169] = 169,
[170] = 170,
2023-10-18 23:26:49 +00:00
[171] = 169,
[172] = 172,
[173] = 170,
[174] = 174,
2023-10-18 23:26:49 +00:00
[175] = 169,
[176] = 170,
[177] = 167,
[178] = 166,
[179] = 179,
[180] = 179,
[181] = 181,
[182] = 168,
[183] = 179,
[184] = 166,
[185] = 167,
2023-10-18 22:18:41 +00:00
[186] = 186,
2023-10-18 23:26:49 +00:00
[187] = 64,
[188] = 188,
[189] = 65,
[190] = 188,
[191] = 188,
[192] = 192,
[193] = 186,
[194] = 186,
[195] = 195,
2023-10-18 22:18:41 +00:00
[196] = 196,
2023-10-18 23:26:49 +00:00
[197] = 197,
[198] = 198,
[199] = 199,
2023-10-18 23:26:49 +00:00
[200] = 200,
[201] = 197,
[202] = 202,
[203] = 203,
2023-10-18 23:26:49 +00:00
[204] = 200,
[205] = 205,
[206] = 206,
[207] = 207,
2023-10-18 23:26:49 +00:00
[208] = 200,
[209] = 209,
2023-10-18 23:26:49 +00:00
[210] = 197,
[211] = 202,
2023-10-18 22:18:41 +00:00
[212] = 212,
[213] = 213,
[214] = 214,
2023-10-18 23:26:49 +00:00
[215] = 198,
2023-10-18 22:18:41 +00:00
[216] = 216,
2023-10-18 23:26:49 +00:00
[217] = 217,
[218] = 218,
[219] = 219,
[220] = 220,
2023-10-18 22:18:41 +00:00
[221] = 221,
[222] = 222,
2023-10-18 23:26:49 +00:00
[223] = 223,
2023-10-18 22:18:41 +00:00
[224] = 224,
2023-10-18 23:26:49 +00:00
[225] = 222,
[226] = 226,
[227] = 195,
2023-10-18 22:18:41 +00:00
[228] = 228,
2023-10-18 23:26:49 +00:00
[229] = 223,
[230] = 226,
[231] = 222,
[232] = 195,
[233] = 223,
[234] = 213,
[235] = 202,
[236] = 236,
[237] = 237,
[238] = 238,
[239] = 239,
2023-10-18 23:26:49 +00:00
[240] = 228,
};
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);
END_STATE();
case 27:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(54);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 29:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(55);
END_STATE();
case 30:
2023-10-18 22:18:41 +00:00
if (lookahead == 'b') ADVANCE(56);
END_STATE();
case 31:
2023-10-18 22:18:41 +00:00
if (lookahead == '_') ADVANCE(57);
END_STATE();
case 32:
2023-10-18 22:18:41 +00:00
if (lookahead == 'a') ADVANCE(58);
if (lookahead == 'u') ADVANCE(59);
END_STATE();
case 33:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(60);
if (lookahead == 'i') ADVANCE(61);
END_STATE();
case 34:
2023-10-18 22:18:41 +00:00
if (lookahead == 'i') ADVANCE(62);
END_STATE();
case 35:
2023-10-18 22:18:41 +00:00
if (lookahead == 'h') ADVANCE(63);
END_STATE();
case 36:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(64);
END_STATE();
case 37:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(65);
END_STATE();
case 38:
2023-10-18 22:18:41 +00:00
if (lookahead == 'h') ADVANCE(66);
END_STATE();
case 39:
2023-10-18 22:18:41 +00:00
if (lookahead == 's') ADVANCE(67);
END_STATE();
case 40:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(68);
END_STATE();
case 41:
2023-10-18 22:18:41 +00:00
if (lookahead == 'd') ADVANCE(69);
END_STATE();
case 42:
2023-10-18 22:18:41 +00:00
if (lookahead == 'h') ADVANCE(70);
END_STATE();
case 43:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 44:
2023-10-18 22:18:41 +00:00
if (lookahead == 'm') ADVANCE(71);
END_STATE();
case 45:
2023-10-18 22:18:41 +00:00
if (lookahead == 'c') ADVANCE(72);
END_STATE();
case 46:
2023-10-18 22:18:41 +00:00
if (lookahead == 'p') ADVANCE(73);
END_STATE();
case 47:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(74);
END_STATE();
case 48:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(75);
END_STATE();
case 49:
2023-10-18 22:18:41 +00:00
if (lookahead == 'g') ADVANCE(76);
END_STATE();
case 50:
2023-10-18 22:18:41 +00:00
if (lookahead == 'p') ADVANCE(77);
END_STATE();
case 51:
2023-10-18 22:18:41 +00:00
if (lookahead == 'd') ADVANCE(78);
END_STATE();
case 52:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 53:
2023-10-18 22:18:41 +00:00
if (lookahead == 'd') ADVANCE(79);
END_STATE();
case 54:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(80);
END_STATE();
case 55:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(81);
END_STATE();
case 56:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(82);
END_STATE();
case 57:
2023-10-18 22:18:41 +00:00
if (lookahead == 'c') ADVANCE(83);
if (lookahead == 'j') ADVANCE(84);
END_STATE();
case 58:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(85);
END_STATE();
case 59:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(86);
END_STATE();
case 60:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(87);
END_STATE();
case 61:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(88);
END_STATE();
case 62:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(89);
END_STATE();
case 63:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_zsh);
END_STATE();
case 64:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(90);
END_STATE();
case 65:
2023-10-18 22:18:41 +00:00
if (lookahead == 'c') ADVANCE(91);
END_STATE();
case 66:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_bash);
END_STATE();
case 67:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(92);
END_STATE();
case 68:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(93);
END_STATE();
case 69:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_find);
END_STATE();
case 70:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_fish);
END_STATE();
case 71:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(94);
END_STATE();
case 72:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(95);
END_STATE();
case 73:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_help);
END_STATE();
case 74:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(96);
END_STATE();
case 75:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_into);
END_STATE();
case 76:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(97);
END_STATE();
case 77:
2023-10-18 22:18:41 +00:00
if (lookahead == 'u') ADVANCE(98);
END_STATE();
case 78:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(99);
END_STATE();
case 79:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_read);
END_STATE();
case 80:
2023-10-18 22:18:41 +00:00
if (lookahead == 'c') ADVANCE(100);
END_STATE();
case 81:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_sort);
END_STATE();
case 82:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(101);
END_STATE();
case 83:
if (lookahead == 's') ADVANCE(102);
END_STATE();
case 84:
2023-10-18 22:18:41 +00:00
if (lookahead == 's') ADVANCE(103);
END_STATE();
case 85:
2023-10-18 22:18:41 +00:00
if (lookahead == 's') ADVANCE(104);
END_STATE();
case 86:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 87:
if (lookahead == 'e') ADVANCE(105);
END_STATE();
case 88:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(106);
END_STATE();
case 89:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(107);
END_STATE();
case 90:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(108);
END_STATE();
case 91:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 92:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 93:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(109);
END_STATE();
case 94:
2023-10-18 22:18:41 +00:00
if (lookahead == 'c') ADVANCE(110);
if (lookahead == 'j') ADVANCE(111);
END_STATE();
case 95:
2023-10-18 22:18:41 +00:00
if (lookahead == 'i') ADVANCE(112);
END_STATE();
case 96:
if (lookahead == 't') ADVANCE(113);
END_STATE();
case 97:
2023-10-18 22:18:41 +00:00
if (lookahead == 'h') ADVANCE(114);
END_STATE();
case 98:
if (lookahead == 't') ADVANCE(115);
END_STATE();
case 99:
2023-10-18 22:18:41 +00:00
if (lookahead == 'm') ADVANCE(116);
END_STATE();
case 100:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(117);
END_STATE();
case 101:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_table);
END_STATE();
case 102:
2023-10-18 22:18:41 +00:00
if (lookahead == 'v') ADVANCE(118);
END_STATE();
case 103:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(119);
END_STATE();
case 104:
2023-10-18 22:18:41 +00:00
if (lookahead == 'f') ADVANCE(120);
END_STATE();
case 105:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_where);
END_STATE();
case 106:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 107:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_write);
END_STATE();
case 108:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(121);
END_STATE();
case 109:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_filter);
END_STATE();
case 110:
2023-10-18 22:18:41 +00:00
if (lookahead == 's') ADVANCE(122);
END_STATE();
case 111:
2023-10-18 22:18:41 +00:00
if (lookahead == 's') ADVANCE(123);
END_STATE();
case 112:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(124);
END_STATE();
case 113:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_insert);
END_STATE();
case 114:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_length);
END_STATE();
case 115:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_output);
END_STATE();
case 116:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(125);
END_STATE();
case 117:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_select);
END_STATE();
case 118:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_to_csv);
END_STATE();
case 119:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(126);
END_STATE();
case 120:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(127);
END_STATE();
case 121:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(128);
END_STATE();
case 122:
2023-10-18 22:18:41 +00:00
if (lookahead == 'v') ADVANCE(129);
END_STATE();
case 123:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(130);
END_STATE();
case 124:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(131);
END_STATE();
case 125:
2023-10-18 22:18:41 +00:00
if (lookahead == 'b') ADVANCE(132);
if (lookahead == 'f') ADVANCE(133);
if (lookahead == 'i') ADVANCE(134);
if (lookahead == 's') ADVANCE(135);
END_STATE();
case 126:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_to_json);
END_STATE();
case 127:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(136);
END_STATE();
case 128:
2023-10-18 22:18:41 +00:00
if (lookahead == 'q') ADVANCE(137);
END_STATE();
case 129:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_from_csv);
END_STATE();
case 130:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(138);
END_STATE();
case 131:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_function);
END_STATE();
case 132:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(139);
END_STATE();
case 133:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(140);
END_STATE();
case 134:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(141);
END_STATE();
case 135:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(142);
END_STATE();
case 136:
2023-10-18 22:18:41 +00:00
if (lookahead == 'm') ADVANCE(143);
END_STATE();
case 137:
2023-10-18 22:18:41 +00:00
if (lookahead == 'u') ADVANCE(144);
END_STATE();
case 138:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_from_json);
END_STATE();
case 139:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(145);
END_STATE();
case 140:
2023-10-18 22:18:41 +00:00
if (lookahead == 'o') ADVANCE(146);
END_STATE();
case 141:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(147);
END_STATE();
case 142:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(148);
END_STATE();
case 143:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_transform);
END_STATE();
case 144:
if (lookahead == 'a') ADVANCE(149);
END_STATE();
case 145:
2023-10-18 22:18:41 +00:00
if (lookahead == 'l') ADVANCE(150);
END_STATE();
case 146:
2023-10-18 22:18:41 +00:00
if (lookahead == 'a') ADVANCE(151);
END_STATE();
case 147:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(152);
END_STATE();
case 148:
2023-10-18 22:18:41 +00:00
if (lookahead == 'i') 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-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(155);
END_STATE();
case 151:
2023-10-18 22:18:41 +00:00
if (lookahead == 't') ADVANCE(156);
END_STATE();
case 152:
2023-10-18 22:18:41 +00:00
if (lookahead == 'g') ADVANCE(157);
END_STATE();
case 153:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(158);
END_STATE();
case 154:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_assert_equal);
END_STATE();
case 155:
2023-10-18 22:18:41 +00:00
if (lookahead == 'a') ADVANCE(159);
END_STATE();
case 156:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 157:
2023-10-18 22:18:41 +00:00
if (lookahead == 'e') ADVANCE(160);
END_STATE();
case 158:
2023-10-18 22:18:41 +00:00
if (lookahead == 'g') ADVANCE(161);
END_STATE();
case 159:
2023-10-18 22:18:41 +00:00
if (lookahead == 'n') ADVANCE(162);
END_STATE();
case 160:
2023-10-18 22:18:41 +00:00
if (lookahead == 'r') ADVANCE(163);
END_STATE();
case 161:
2023-10-18 22:18:41 +00:00
ACCEPT_TOKEN(anon_sym_random_string);
END_STATE();
case 162:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 163:
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},
[31] = {.lex_state = 13},
[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},
[56] = {.lex_state = 15},
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},
[60] = {.lex_state = 14},
[61] = {.lex_state = 14},
[62] = {.lex_state = 14},
[63] = {.lex_state = 14},
[64] = {.lex_state = 14},
[65] = {.lex_state = 14},
[66] = {.lex_state = 14},
[67] = {.lex_state = 14},
[68] = {.lex_state = 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-18 23:26:49 +00:00
[110] = {.lex_state = 1},
[111] = {.lex_state = 1},
[112] = {.lex_state = 1},
[113] = {.lex_state = 1},
[114] = {.lex_state = 2},
[115] = {.lex_state = 2},
[116] = {.lex_state = 2},
[117] = {.lex_state = 2},
2023-10-18 22:18:41 +00:00
[118] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[119] = {.lex_state = 1},
[120] = {.lex_state = 1},
[121] = {.lex_state = 1},
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
[126] = {.lex_state = 1},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 1},
[130] = {.lex_state = 1},
[131] = {.lex_state = 1},
[132] = {.lex_state = 1},
[133] = {.lex_state = 1},
[134] = {.lex_state = 1},
[135] = {.lex_state = 1},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
[139] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[140] = {.lex_state = 2},
[141] = {.lex_state = 2},
[142] = {.lex_state = 2},
2023-10-18 22:18:41 +00:00
[143] = {.lex_state = 1},
2023-10-18 23:26:49 +00:00
[144] = {.lex_state = 2},
[145] = {.lex_state = 2},
[146] = {.lex_state = 2},
2023-10-18 23:26:49 +00:00
[147] = {.lex_state = 1},
[148] = {.lex_state = 2},
[149] = {.lex_state = 2},
[150] = {.lex_state = 2},
[151] = {.lex_state = 2},
[152] = {.lex_state = 2},
[153] = {.lex_state = 2},
[154] = {.lex_state = 2},
2023-10-18 23:26:49 +00:00
[155] = {.lex_state = 1},
[156] = {.lex_state = 1},
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 14},
[160] = {.lex_state = 14},
[161] = {.lex_state = 14},
[162] = {.lex_state = 14},
[163] = {.lex_state = 14},
[164] = {.lex_state = 14},
[165] = {.lex_state = 14},
[166] = {.lex_state = 14},
[167] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[168] = {.lex_state = 0},
[169] = {.lex_state = 14},
[170] = {.lex_state = 14},
[171] = {.lex_state = 14},
[172] = {.lex_state = 14},
[173] = {.lex_state = 14},
[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-18 23:26:49 +00:00
[182] = {.lex_state = 0},
[183] = {.lex_state = 14},
[184] = {.lex_state = 14},
[185] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[186] = {.lex_state = 0},
[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},
[192] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[193] = {.lex_state = 0},
[194] = {.lex_state = 0},
[195] = {.lex_state = 0},
2023-10-18 22:18:41 +00:00
[196] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[197] = {.lex_state = 0},
[198] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[199] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[200] = {.lex_state = 0},
2023-10-18 22:18:41 +00:00
[201] = {.lex_state = 0},
[202] = {.lex_state = 0},
[203] = {.lex_state = 0},
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},
[211] = {.lex_state = 0},
[212] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[213] = {.lex_state = 14},
[214] = {.lex_state = 14},
[215] = {.lex_state = 14},
2023-10-18 22:18:41 +00:00
[216] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[217] = {.lex_state = 14},
[218] = {.lex_state = 0},
2023-10-18 22:18:41 +00:00
[219] = {.lex_state = 14},
[220] = {.lex_state = 14},
[221] = {.lex_state = 14},
2023-10-18 23:26:49 +00:00
[222] = {.lex_state = 0},
[223] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[224] = {.lex_state = 0},
2023-10-18 22:18:41 +00:00
[225] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[226] = {.lex_state = 14},
[227] = {.lex_state = 0},
[228] = {.lex_state = 14},
[229] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[230] = {.lex_state = 14},
[231] = {.lex_state = 0},
[232] = {.lex_state = 0},
[233] = {.lex_state = 0},
2023-10-18 23:26:49 +00:00
[234] = {.lex_state = 14},
[235] = {.lex_state = 0},
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-18 23:26:49 +00:00
[240] = {.lex_state = 14},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[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),
[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-18 23:26:49 +00:00
[sym_root] = STATE(205),
2023-10-18 22:18:41 +00:00
[sym_item] = STATE(2),
2023-10-18 23:26:49 +00:00
[sym_statement] = STATE(6),
[sym_comment] = STATE(79),
[sym_expression] = STATE(48),
[sym__expression_kind] = STATE(46),
[sym_value] = STATE(46),
[sym_boolean] = STATE(39),
[sym_list] = STATE(39),
[sym_function] = STATE(39),
[sym_table] = STATE(39),
[sym_map] = STATE(39),
[sym_math] = STATE(46),
[sym_logic] = STATE(46),
[sym_assignment] = STATE(79),
[sym_if_else] = STATE(79),
[sym_if] = STATE(55),
[sym_function_call] = STATE(46),
[sym_while] = STATE(79),
[sym_for] = STATE(79),
[sym_transform] = STATE(79),
[sym_filter] = STATE(79),
[sym_find] = STATE(79),
[sym_select] = STATE(79),
[sym_insert] = STATE(79),
[sym_async] = STATE(79),
2023-10-18 22:18:41 +00:00
[aux_sym_root_repeat1] = STATE(2),
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),
[anon_sym_select] = ACTIONS(35),
[anon_sym_insert] = ACTIONS(37),
[anon_sym_async] = ACTIONS(39),
},
};
static const uint16_t ts_small_parse_table[] = {
2023-10-18 22:18:41 +00:00
[0] = 27,
ACTIONS(3), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
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,
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_select,
ACTIONS(37), 1,
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
ACTIONS(41), 1,
ts_builtin_sym_end,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
2023-10-18 22:18:41 +00:00
sym_if,
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-18 22:18:41 +00:00
STATE(3), 2,
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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
[104] = 27,
ACTIONS(43), 1,
ts_builtin_sym_end,
ACTIONS(45), 1,
sym_identifier,
ACTIONS(48), 1,
aux_sym_comment_token1,
ACTIONS(51), 1,
anon_sym_LPAREN,
ACTIONS(54), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(66), 1,
anon_sym_function,
ACTIONS(69), 1,
anon_sym_LBRACE,
ACTIONS(72), 1,
anon_sym_table,
ACTIONS(75), 1,
anon_sym_if,
ACTIONS(78), 1,
anon_sym_while,
ACTIONS(81), 1,
anon_sym_for,
ACTIONS(84), 1,
anon_sym_transform,
ACTIONS(87), 1,
anon_sym_filter,
ACTIONS(90), 1,
anon_sym_find,
ACTIONS(93), 1,
anon_sym_select,
ACTIONS(96), 1,
anon_sym_insert,
ACTIONS(99), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 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,
ACTIONS(57), 2,
sym_float,
sym_string,
ACTIONS(60), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
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-18 23:26:49 +00:00
STATE(39), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
[208] = 26,
ACTIONS(104), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
ACTIONS(107), 1,
aux_sym_comment_token1,
2023-10-18 22:18:41 +00:00
ACTIONS(110), 1,
anon_sym_LPAREN,
2023-10-18 22:18:41 +00:00
ACTIONS(113), 1,
sym_integer,
2023-10-18 22:18:41 +00:00
ACTIONS(122), 1,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
ACTIONS(125), 1,
anon_sym_function,
2023-10-18 22:18:41 +00:00
ACTIONS(128), 1,
anon_sym_LBRACE,
2023-10-18 22:18:41 +00:00
ACTIONS(131), 1,
anon_sym_table,
2023-10-18 22:18:41 +00:00
ACTIONS(134), 1,
anon_sym_if,
2023-10-18 22:18:41 +00:00
ACTIONS(137), 1,
anon_sym_while,
2023-10-18 22:18:41 +00:00
ACTIONS(140), 1,
anon_sym_for,
2023-10-18 22:18:41 +00:00
ACTIONS(143), 1,
anon_sym_transform,
2023-10-18 22:18:41 +00:00
ACTIONS(146), 1,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
ACTIONS(149), 1,
anon_sym_find,
ACTIONS(152), 1,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(155), 1,
anon_sym_insert,
2023-10-18 22:18:41 +00:00
ACTIONS(158), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 22:18:41 +00:00
ACTIONS(102), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(116), 2,
sym_float,
sym_string,
2023-10-18 22:18:41 +00:00
ACTIONS(119), 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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 22:18:41 +00:00
[309] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(238), 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-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(79), 11,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_select,
sym_insert,
sym_async,
[409] = 8,
STATE(48), 1,
sym_expression,
STATE(55), 1,
sym_if,
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(161), 7,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(163), 15,
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_select,
anon_sym_insert,
anon_sym_async,
[473] = 26,
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,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(37), 1,
anon_sym_insert,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(218), 1,
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-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[573] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(165), 1,
anon_sym_RBRACE,
STATE(48), 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-18 23:26:49 +00:00
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[673] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(236), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[773] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(211), 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-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[873] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(210), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[973] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[1073] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(161), 1,
anon_sym_RBRACE,
STATE(48), 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-18 23:26:49 +00:00
STATE(4), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[1173] = 26,
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,
anon_sym_select,
ACTIONS(37), 1,
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
STATE(48), 1,
sym_expression,
STATE(55), 1,
sym_if,
STATE(237), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_select,
sym_insert,
sym_async,
[1273] = 14,
ACTIONS(167), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(169), 1,
anon_sym_LPAREN,
ACTIONS(171), 1,
sym_integer,
ACTIONS(177), 1,
anon_sym_LBRACK,
ACTIONS(179), 1,
anon_sym_function,
ACTIONS(181), 1,
anon_sym_LBRACE,
ACTIONS(183), 1,
anon_sym_table,
STATE(72), 1,
2023-10-18 22:18:41 +00:00
sym_tool,
2023-10-18 23:26:49 +00:00
STATE(143), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(155), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
ACTIONS(185), 24,
2023-10-18 22:18:41 +00:00
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,
2023-10-18 23:26:49 +00:00
[1349] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(202), 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-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[1449] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(201), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(79), 11,
sym_comment,
sym_assignment,
sym_if_else,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_select,
sym_insert,
sym_async,
[1549] = 26,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
ACTIONS(7), 1,
anon_sym_LPAREN,
ACTIONS(9), 1,
sym_integer,
ACTIONS(15), 1,
anon_sym_LBRACK,
ACTIONS(17), 1,
anon_sym_function,
ACTIONS(19), 1,
anon_sym_LBRACE,
ACTIONS(21), 1,
anon_sym_table,
ACTIONS(23), 1,
anon_sym_if,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_transform,
ACTIONS(31), 1,
anon_sym_filter,
ACTIONS(33), 1,
anon_sym_find,
ACTIONS(35), 1,
anon_sym_select,
ACTIONS(37), 1,
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
STATE(48), 1,
sym_expression,
STATE(55), 1,
sym_if,
STATE(200), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[1649] = 14,
ACTIONS(169), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
ACTIONS(187), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(71), 1,
2023-10-18 22:18:41 +00:00
sym_tool,
2023-10-18 23:26:49 +00:00
STATE(143), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(157), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
ACTIONS(185), 24,
2023-10-18 22:18:41 +00:00
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,
2023-10-18 23:26:49 +00:00
[1725] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(239), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[1825] = 14,
ACTIONS(169), 1,
anon_sym_LPAREN,
ACTIONS(171), 1,
sym_integer,
ACTIONS(177), 1,
anon_sym_LBRACK,
ACTIONS(179), 1,
anon_sym_function,
ACTIONS(181), 1,
anon_sym_LBRACE,
ACTIONS(183), 1,
anon_sym_table,
ACTIONS(189), 1,
sym_identifier,
STATE(63), 1,
sym_tool,
STATE(143), 1,
sym_expression,
ACTIONS(173), 2,
sym_float,
sym_string,
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(156), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(185), 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,
[1901] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[2001] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(235), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[2101] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(197), 1,
sym_item,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(13), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[2201] = 26,
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-18 22:18:41 +00:00
anon_sym_select,
ACTIONS(37), 1,
2023-10-18 22:18:41 +00:00
anon_sym_insert,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(191), 1,
anon_sym_RBRACE,
STATE(48), 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-18 23:26:49 +00:00
STATE(8), 2,
sym_statement,
aux_sym_item_repeat1,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 22:18:41 +00:00
[2301] = 25,
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,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(169), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
ACTIONS(193), 1,
sym_identifier,
ACTIONS(195), 1,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(197), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(136), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(206), 1,
2023-10-18 22:18:41 +00:00
sym_statement,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 22:18:41 +00:00
[2397] = 25,
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(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 22:18:41 +00:00
ACTIONS(193), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
ACTIONS(195), 1,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(197), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(85), 1,
sym_statement,
2023-10-18 23:26:49 +00:00
STATE(136), 1,
sym_expression,
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 22:18:41 +00:00
[2493] = 25,
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(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 22:18:41 +00:00
ACTIONS(193), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
ACTIONS(195), 1,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(197), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(136), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(212), 1,
sym_statement,
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 22:18:41 +00:00
[2589] = 25,
ACTIONS(3), 1,
sym_identifier,
ACTIONS(5), 1,
aux_sym_comment_token1,
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,
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,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(37), 1,
anon_sym_insert,
2023-10-18 22:18:41 +00:00
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
STATE(48), 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-18 23:26:49 +00:00
STATE(85), 1,
sym_statement,
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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 22:18:41 +00:00
[2685] = 25,
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,
ACTIONS(39), 1,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 22:18:41 +00:00
ACTIONS(193), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
ACTIONS(195), 1,
anon_sym_select,
2023-10-18 22:18:41 +00:00
ACTIONS(197), 1,
anon_sym_insert,
2023-10-18 23:26:49 +00:00
STATE(55), 1,
sym_if,
2023-10-18 23:26:49 +00:00
STATE(136), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(224), 1,
2023-10-18 22:18:41 +00:00
sym_statement,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(79), 11,
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,
sym_select,
sym_insert,
sym_async,
2023-10-18 23:26:49 +00:00
[2781] = 8,
ACTIONS(207), 1,
anon_sym_DASH,
STATE(93), 1,
sym_logic_operator,
2023-10-18 23:26:49 +00:00
STATE(94), 1,
sym_math_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(199), 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(201), 15,
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_select,
anon_sym_insert,
anon_sym_async,
[2839] = 4,
STATE(93), 1,
sym_logic_operator,
STATE(94), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(213), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
ACTIONS(211), 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-18 23:26:49 +00:00
[2889] = 8,
ACTIONS(207), 1,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
STATE(93), 1,
sym_logic_operator,
2023-10-18 23:26:49 +00:00
STATE(94), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
ACTIONS(215), 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-18 23:26:49 +00:00
ACTIONS(217), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[2947] = 5,
ACTIONS(223), 1,
2023-10-18 22:18:41 +00:00
anon_sym_EQ,
STATE(29), 1,
sym_assignment_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(225), 2,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
2023-10-18 23:26:49 +00:00
ACTIONS(219), 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-18 23:26:49 +00:00
ACTIONS(221), 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_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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[2998] = 2,
ACTIONS(227), 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-18 23:26:49 +00:00
ACTIONS(229), 20,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_select,
anon_sym_insert,
anon_sym_into,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[3043] = 2,
ACTIONS(231), 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-18 23:26:49 +00:00
ACTIONS(233), 20,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_LT,
anon_sym_GT,
anon_sym_table,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
2023-10-18 22:18:41 +00:00
anon_sym_find,
anon_sym_select,
anon_sym_insert,
2023-10-18 22:18:41 +00:00
anon_sym_into,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[3088] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(237), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
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-18 23:26:49 +00:00
[3132] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(241), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(239), 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-18 23:26:49 +00:00
[3176] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(245), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
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-18 23:26:49 +00:00
[3220] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(249), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
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-18 23:26:49 +00:00
[3264] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(253), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(251), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3308] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(257), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(255), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3352] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(261), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(259), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3396] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(265), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(263), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3440] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(269), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(267), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3484] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(273), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(271), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3528] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(277), 19,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 22:18:41 +00:00
ACTIONS(275), 20,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[3572] = 8,
ACTIONS(207), 1,
2023-10-18 22:18:41 +00:00
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
STATE(93), 1,
2023-10-18 22:18:41 +00:00
sym_logic_operator,
2023-10-18 23:26:49 +00:00
STATE(94), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(203), 3,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 4,
2023-10-18 22:18:41 +00:00
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
ACTIONS(279), 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-18 23:26:49 +00:00
ACTIONS(281), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[3627] = 8,
ACTIONS(207), 1,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
STATE(93), 1,
sym_logic_operator,
2023-10-18 23:26:49 +00:00
STATE(94), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
ACTIONS(283), 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-18 23:26:49 +00:00
ACTIONS(285), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[3682] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(289), 1,
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(68), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
ACTIONS(221), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(219), 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-18 23:26:49 +00:00
[3752] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(291), 1,
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
ACTIONS(221), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(219), 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-18 23:26:49 +00:00
[3822] = 16,
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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(293), 1,
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(73), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
ACTIONS(221), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(219), 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-18 23:26:49 +00:00
[3892] = 4,
ACTIONS(221), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_DASH,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(295), 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-18 23:26:49 +00:00
ACTIONS(219), 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-18 23:26:49 +00:00
ACTIONS(297), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[3937] = 9,
ACTIONS(207), 1,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
ACTIONS(303), 1,
anon_sym_COMMA,
2023-10-18 23:26:49 +00:00
STATE(93), 1,
sym_logic_operator,
2023-10-18 23:26:49 +00:00
STATE(94), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
ACTIONS(299), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(301), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[3985] = 6,
ACTIONS(309), 1,
anon_sym_elseif,
2023-10-18 23:26:49 +00:00
ACTIONS(311), 1,
anon_sym_else,
2023-10-18 23:26:49 +00:00
STATE(75), 1,
sym_else,
2023-10-18 23:26:49 +00:00
STATE(56), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-18 23:26:49 +00:00
ACTIONS(305), 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-18 23:26:49 +00:00
ACTIONS(307), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4026] = 6,
ACTIONS(309), 1,
anon_sym_elseif,
2023-10-18 23:26:49 +00:00
ACTIONS(311), 1,
anon_sym_else,
2023-10-18 23:26:49 +00:00
STATE(76), 1,
sym_else,
2023-10-18 23:26:49 +00:00
STATE(57), 2,
2023-10-18 22:18:41 +00:00
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-18 23:26:49 +00:00
ACTIONS(313), 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-18 23:26:49 +00:00
ACTIONS(315), 15,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4067] = 4,
ACTIONS(321), 1,
2023-10-18 22:18:41 +00:00
anon_sym_elseif,
2023-10-18 23:26:49 +00:00
STATE(57), 2,
sym_else_if,
aux_sym_if_else_repeat1,
2023-10-18 23:26:49 +00:00
ACTIONS(317), 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-18 23:26:49 +00:00
ACTIONS(319), 16,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4103] = 2,
ACTIONS(324), 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-18 23:26:49 +00:00
ACTIONS(326), 16,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
anon_sym_if,
anon_sym_else,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4133] = 2,
ACTIONS(328), 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-18 22:18:41 +00:00
anon_sym_elseif,
2023-10-18 23:26:49 +00:00
ACTIONS(330), 16,
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,
2023-10-18 22:18:41 +00:00
anon_sym_find,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4163] = 14,
ACTIONS(332), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(335), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(340), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(349), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(352), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(355), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(358), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 1,
aux_sym_list_repeat1,
2023-10-18 23:26:49 +00:00
ACTIONS(338), 2,
anon_sym_RPAREN,
anon_sym_RBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(343), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(346), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[4217] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(361), 1,
anon_sym_RBRACK,
STATE(54), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[4270] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(363), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[4323] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(291), 1,
anon_sym_RPAREN,
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[4376] = 3,
ACTIONS(369), 1,
anon_sym_where,
ACTIONS(365), 8,
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-18 23:26:49 +00:00
ACTIONS(367), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4407] = 3,
ACTIONS(375), 1,
anon_sym_where,
ACTIONS(371), 8,
ts_builtin_sym_end,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
anon_sym_LBRACK,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(373), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
[4438] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(377), 1,
anon_sym_RBRACK,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(69), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[4491] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(379), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACK,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(61), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4544] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(381), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4597] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(383), 1,
anon_sym_RBRACK,
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4650] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(385), 1,
anon_sym_RBRACK,
STATE(54), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(74), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4703] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(293), 1,
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(73), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4756] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(289), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(68), 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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4809] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(387), 1,
anon_sym_RPAREN,
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4862] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(389), 1,
anon_sym_RBRACK,
2023-10-18 23:26:49 +00:00
STATE(54), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(60), 1,
aux_sym_list_repeat1,
ACTIONS(11), 2,
sym_float,
sym_string,
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[4915] = 2,
ACTIONS(313), 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-18 23:26:49 +00:00
ACTIONS(315), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4943] = 2,
ACTIONS(391), 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-18 23:26:49 +00:00
ACTIONS(393), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4971] = 2,
ACTIONS(395), 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-18 23:26:49 +00:00
ACTIONS(397), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[4999] = 2,
ACTIONS(399), 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,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(401), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5027] = 2,
ACTIONS(279), 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-18 23:26:49 +00:00
ACTIONS(281), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5055] = 2,
ACTIONS(403), 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-18 23:26:49 +00:00
ACTIONS(405), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5083] = 2,
ACTIONS(407), 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-18 23:26:49 +00:00
ACTIONS(409), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5111] = 2,
ACTIONS(411), 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-18 23:26:49 +00:00
ACTIONS(413), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5139] = 2,
ACTIONS(415), 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-18 23:26:49 +00:00
ACTIONS(417), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5167] = 2,
ACTIONS(419), 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,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(421), 15,
sym_identifier,
2023-10-18 22:18:41 +00:00
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5195] = 2,
ACTIONS(423), 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-18 23:26:49 +00:00
ACTIONS(425), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5223] = 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,
anon_sym_LBRACK,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(429), 15,
2023-10-18 22:18:41 +00:00
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
2023-10-18 22:18:41 +00:00
anon_sym_table,
anon_sym_if,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5251] = 2,
ACTIONS(431), 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-18 23:26:49 +00:00
ACTIONS(433), 15,
2023-10-18 22:18:41 +00:00
sym_identifier,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[5279] = 12,
ACTIONS(435), 1,
sym_identifier,
ACTIONS(437), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(439), 1,
sym_integer,
ACTIONS(445), 1,
anon_sym_LBRACK,
ACTIONS(447), 1,
anon_sym_function,
ACTIONS(449), 1,
anon_sym_LBRACE,
ACTIONS(451), 1,
anon_sym_table,
STATE(116), 1,
sym_expression,
ACTIONS(441), 2,
sym_float,
sym_string,
ACTIONS(443), 2,
anon_sym_true,
anon_sym_false,
STATE(145), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(153), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
[5326] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
ACTIONS(171), 1,
sym_integer,
ACTIONS(177), 1,
anon_sym_LBRACK,
ACTIONS(179), 1,
anon_sym_function,
ACTIONS(181), 1,
anon_sym_LBRACE,
ACTIONS(183), 1,
anon_sym_table,
ACTIONS(453), 1,
sym_identifier,
STATE(123), 1,
sym_expression,
ACTIONS(173), 2,
sym_float,
sym_string,
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5373] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
ACTIONS(171), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
STATE(128), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5420] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(129), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5467] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(126), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5514] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
STATE(31), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[5561] = 12,
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(287), 1,
sym_identifier,
STATE(32), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(11), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(13), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[5608] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(111), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5655] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(112), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5702] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
STATE(110), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[5749] = 13,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(53), 1,
sym_logic,
STATE(147), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(137), 4,
sym__expression_kind,
sym_value,
sym_math,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
[5798] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(119), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5845] = 12,
ACTIONS(435), 1,
sym_identifier,
ACTIONS(437), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(439), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(445), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(447), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(449), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(451), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
STATE(115), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(441), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(443), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(145), 5,
sym__expression_kind,
sym_value,
sym_math,
2023-10-18 22:18:41 +00:00
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(153), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
[5892] = 12,
ACTIONS(7), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(9), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(17), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(19), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(21), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(287), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(33), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(11), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(13), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(46), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[5939] = 12,
ACTIONS(435), 1,
sym_identifier,
ACTIONS(437), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(439), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(445), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(447), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(449), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(451), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
STATE(114), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(441), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(443), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(145), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(153), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
[5986] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(121), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[6033] = 12,
ACTIONS(435), 1,
sym_identifier,
ACTIONS(437), 1,
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(439), 1,
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(445), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(447), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(449), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(451), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
STATE(117), 1,
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(441), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(443), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(145), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(153), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
[6080] = 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-18 23:26:49 +00:00
ACTIONS(287), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(49), 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-18 23:26:49 +00:00
STATE(39), 5,
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
STATE(46), 5,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
2023-10-18 23:26:49 +00:00
[6127] = 12,
ACTIONS(169), 1,
anon_sym_LPAREN,
ACTIONS(171), 1,
sym_integer,
ACTIONS(177), 1,
anon_sym_LBRACK,
ACTIONS(179), 1,
anon_sym_function,
ACTIONS(181), 1,
anon_sym_LBRACE,
ACTIONS(183), 1,
anon_sym_table,
ACTIONS(453), 1,
sym_identifier,
STATE(120), 1,
sym_expression,
ACTIONS(173), 2,
sym_float,
sym_string,
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[6174] = 13,
ACTIONS(169), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(143), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
STATE(158), 1,
sym_logic,
ACTIONS(173), 2,
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
2023-10-18 22:18:41 +00:00
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(137), 4,
2023-10-18 22:18:41 +00:00
sym__expression_kind,
sym_value,
sym_math,
sym_function_call,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
[6223] = 12,
ACTIONS(169), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(171), 1,
2023-10-18 22:18:41 +00:00
sym_integer,
2023-10-18 23:26:49 +00:00
ACTIONS(177), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(179), 1,
2023-10-18 22:18:41 +00:00
anon_sym_function,
2023-10-18 23:26:49 +00:00
ACTIONS(181), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(183), 1,
2023-10-18 22:18:41 +00:00
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(453), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(125), 1,
2023-10-18 22:18:41 +00:00
sym_expression,
2023-10-18 23:26:49 +00:00
ACTIONS(173), 2,
2023-10-18 22:18:41 +00:00
sym_float,
sym_string,
2023-10-18 23:26:49 +00:00
ACTIONS(175), 2,
anon_sym_true,
anon_sym_false,
2023-10-18 23:26:49 +00:00
STATE(134), 5,
2023-10-18 22:18:41 +00:00
sym_boolean,
sym_list,
sym_function,
sym_table,
sym_map,
2023-10-18 23:26:49 +00:00
STATE(137), 5,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
[6270] = 2,
ACTIONS(457), 6,
aux_sym_comment_token1,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(455), 15,
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,
anon_sym_select,
anon_sym_insert,
anon_sym_async,
2023-10-18 23:26:49 +00:00
[6296] = 6,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(215), 3,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6327] = 4,
STATE(95), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(96), 1,
sym_logic_operator,
ACTIONS(213), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(211), 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-18 23:26:49 +00:00
[6354] = 6,
STATE(95), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(199), 3,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6385] = 5,
ACTIONS(223), 1,
anon_sym_EQ,
STATE(27), 1,
sym_assignment_operator,
ACTIONS(225), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(221), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PLUS,
anon_sym_DASH,
2023-10-18 23:26:49 +00:00
ACTIONS(219), 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,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[6414] = 7,
ACTIONS(199), 1,
anon_sym_RBRACE,
ACTIONS(201), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
STATE(100), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[6446] = 4,
2023-10-18 22:18:41 +00:00
STATE(100), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
ACTIONS(213), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(211), 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-18 23:26:49 +00:00
[6472] = 7,
ACTIONS(459), 1,
sym_identifier,
ACTIONS(461), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(100), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[6504] = 7,
ACTIONS(215), 1,
anon_sym_RBRACE,
ACTIONS(217), 1,
sym_identifier,
STATE(100), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(102), 1,
sym_logic_operator,
ACTIONS(203), 3,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 5,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[6536] = 2,
ACTIONS(277), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(275), 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-18 23:26:49 +00:00
[6557] = 6,
ACTIONS(463), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
STATE(95), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(96), 1,
sym_logic_operator,
2023-10-18 23:26:49 +00:00
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6586] = 6,
ACTIONS(465), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
STATE(95), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6615] = 6,
ACTIONS(467), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
STATE(95), 1,
2023-10-18 22:18:41 +00:00
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6644] = 2,
ACTIONS(257), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[6665] = 6,
ACTIONS(283), 1,
anon_sym_RBRACE,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6694] = 2,
ACTIONS(249), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(247), 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-18 23:26:49 +00:00
[6715] = 6,
ACTIONS(469), 1,
anon_sym_LBRACE,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6744] = 6,
ACTIONS(471), 1,
anon_sym_LBRACE,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6773] = 2,
ACTIONS(241), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(239), 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-18 23:26:49 +00:00
[6794] = 6,
ACTIONS(473), 1,
anon_sym_LBRACE,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6823] = 6,
ACTIONS(475), 1,
anon_sym_LBRACE,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[6852] = 2,
ACTIONS(261), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[6873] = 2,
ACTIONS(229), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(227), 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-18 23:26:49 +00:00
[6894] = 2,
ACTIONS(265), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[6915] = 2,
ACTIONS(269), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[6936] = 2,
ACTIONS(245), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[6957] = 2,
ACTIONS(253), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(251), 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-18 23:26:49 +00:00
[6978] = 6,
ACTIONS(279), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(95), 1,
sym_math_operator,
2023-10-18 23:26:49 +00:00
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 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-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[7007] = 2,
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(271), 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-18 23:26:49 +00:00
[7028] = 2,
ACTIONS(233), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(231), 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,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[7049] = 2,
ACTIONS(237), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +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,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[7070] = 2,
ACTIONS(229), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(227), 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-18 23:26:49 +00:00
[7090] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(261), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 22:18:41 +00:00
anon_sym_PIPE_PIPE,
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-18 23:26:49 +00:00
[7110] = 2,
ACTIONS(249), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(247), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[7130] = 5,
STATE(95), 1,
sym_math_operator,
STATE(96), 1,
sym_logic_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[7156] = 2,
ACTIONS(253), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[7176] = 2,
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-18 23:26:49 +00:00
[7196] = 2,
ACTIONS(233), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(231), 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-18 23:26:49 +00:00
[7216] = 5,
STATE(93), 1,
sym_logic_operator,
STATE(95), 1,
sym_math_operator,
ACTIONS(203), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(205), 5,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
2023-10-18 23:26:49 +00:00
ACTIONS(209), 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-18 23:26:49 +00:00
[7242] = 2,
ACTIONS(237), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[7262] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(241), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 22:18:41 +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-18 23:26:49 +00:00
[7282] = 2,
ACTIONS(277), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
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-18 23:26:49 +00:00
[7302] = 2,
ACTIONS(269), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +00:00
ACTIONS(267), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[7322] = 2,
ACTIONS(265), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
anon_sym_PIPE_PIPE,
ACTIONS(263), 11,
anon_sym_RBRACE,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
2023-10-18 23:26:49 +00:00
[7342] = 2,
ACTIONS(245), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[7362] = 2,
ACTIONS(257), 4,
sym_identifier,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE_PIPE,
2023-10-18 23:26:49 +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-18 23:26:49 +00:00
[7382] = 3,
ACTIONS(477), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(271), 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-18 23:26:49 +00:00
[7403] = 3,
ACTIONS(479), 1,
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(271), 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-18 23:26:49 +00:00
[7424] = 3,
ACTIONS(481), 1,
anon_sym_RPAREN,
2023-10-18 23:26:49 +00:00
ACTIONS(273), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(271), 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-18 23:26:49 +00:00
[7445] = 3,
ACTIONS(295), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(221), 2,
anon_sym_LT,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
ACTIONS(219), 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-18 23:26:49 +00:00
[7466] = 2,
ACTIONS(483), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(338), 7,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7484] = 2,
ACTIONS(485), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
ACTIONS(487), 6,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7501] = 2,
ACTIONS(491), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(489), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
[7517] = 2,
ACTIONS(495), 5,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(493), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_function,
anon_sym_table,
2023-10-18 23:26:49 +00:00
[7533] = 3,
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(497), 1,
anon_sym_into,
2023-10-18 23:26:49 +00:00
STATE(165), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-18 23:26:49 +00:00
[7544] = 3,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(499), 1,
anon_sym_into,
2023-10-18 23:26:49 +00:00
STATE(165), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-18 23:26:49 +00:00
[7555] = 3,
ACTIONS(501), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
ACTIONS(504), 1,
anon_sym_into,
2023-10-18 23:26:49 +00:00
STATE(165), 2,
sym_list,
aux_sym_insert_repeat1,
2023-10-18 23:26:49 +00:00
[7566] = 3,
ACTIONS(506), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(508), 1,
anon_sym_RBRACE,
STATE(172), 1,
aux_sym_map_repeat1,
[7576] = 3,
ACTIONS(506), 1,
sym_identifier,
ACTIONS(510), 1,
anon_sym_RBRACE,
STATE(184), 1,
aux_sym_map_repeat1,
[7586] = 2,
2023-10-18 22:18:41 +00:00
ACTIONS(15), 1,
anon_sym_LBRACK,
2023-10-18 23:26:49 +00:00
STATE(164), 2,
2023-10-18 22:18:41 +00:00
sym_list,
aux_sym_insert_repeat1,
2023-10-18 23:26:49 +00:00
[7594] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(514), 1,
anon_sym_GT,
STATE(181), 1,
aux_sym_function_repeat1,
[7604] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(516), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(169), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7614] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(518), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(181), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7624] = 3,
ACTIONS(520), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(523), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(172), 1,
aux_sym_map_repeat1,
2023-10-18 23:26:49 +00:00
[7634] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(525), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(171), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7644] = 2,
ACTIONS(529), 1,
anon_sym_COMMA,
ACTIONS(527), 2,
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
[7652] = 3,
ACTIONS(512), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(531), 1,
2023-10-18 22:18:41 +00:00
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(181), 1,
2023-10-18 22:18:41 +00:00
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7662] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(533), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(175), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7672] = 3,
ACTIONS(506), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(535), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(178), 1,
2023-10-18 22:18:41 +00:00
aux_sym_map_repeat1,
2023-10-18 23:26:49 +00:00
[7682] = 3,
ACTIONS(506), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(537), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(172), 1,
aux_sym_map_repeat1,
2023-10-18 23:26:49 +00:00
[7692] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(539), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(181), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7702] = 3,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(541), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(181), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7712] = 3,
ACTIONS(543), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(546), 1,
anon_sym_GT,
2023-10-18 23:26:49 +00:00
STATE(181), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7722] = 2,
ACTIONS(15), 1,
anon_sym_LBRACK,
STATE(163), 2,
sym_list,
aux_sym_insert_repeat1,
[7730] = 3,
ACTIONS(512), 1,
sym_identifier,
ACTIONS(548), 1,
anon_sym_GT,
STATE(181), 1,
aux_sym_function_repeat1,
[7740] = 3,
ACTIONS(506), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(550), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(172), 1,
aux_sym_map_repeat1,
2023-10-18 23:26:49 +00:00
[7750] = 3,
ACTIONS(506), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
ACTIONS(552), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
STATE(166), 1,
aux_sym_map_repeat1,
2023-10-18 23:26:49 +00:00
[7760] = 2,
ACTIONS(554), 1,
anon_sym_LT,
ACTIONS(556), 1,
anon_sym_LBRACE,
[7767] = 2,
ACTIONS(365), 1,
anon_sym_RBRACE,
ACTIONS(558), 1,
anon_sym_where,
[7774] = 2,
ACTIONS(512), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(180), 1,
2023-10-18 22:18:41 +00:00
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7781] = 2,
ACTIONS(371), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
ACTIONS(560), 1,
anon_sym_where,
2023-10-18 23:26:49 +00:00
[7788] = 2,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
STATE(179), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7795] = 2,
ACTIONS(512), 1,
sym_identifier,
2023-10-18 22:18:41 +00:00
STATE(183), 1,
aux_sym_function_repeat1,
2023-10-18 23:26:49 +00:00
[7802] = 1,
ACTIONS(546), 2,
sym_identifier,
2023-10-18 23:26:49 +00:00
anon_sym_GT,
[7807] = 2,
ACTIONS(562), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(564), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7814] = 2,
ACTIONS(566), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
ACTIONS(568), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7821] = 1,
ACTIONS(570), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7825] = 1,
ACTIONS(572), 1,
sym_identifier,
[7829] = 1,
ACTIONS(574), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7833] = 1,
ACTIONS(576), 1,
sym_identifier,
[7837] = 1,
ACTIONS(578), 1,
anon_sym_EQ,
[7841] = 1,
ACTIONS(580), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7845] = 1,
ACTIONS(582), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7849] = 1,
ACTIONS(584), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7853] = 1,
ACTIONS(586), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7857] = 1,
ACTIONS(588), 1,
anon_sym_RBRACE,
[7861] = 1,
ACTIONS(590), 1,
2023-10-18 22:18:41 +00:00
ts_builtin_sym_end,
2023-10-18 23:26:49 +00:00
[7865] = 1,
ACTIONS(592), 1,
anon_sym_RBRACE,
[7869] = 1,
ACTIONS(594), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7873] = 1,
ACTIONS(596), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7877] = 1,
ACTIONS(598), 1,
anon_sym_in,
[7881] = 1,
ACTIONS(600), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7885] = 1,
ACTIONS(602), 1,
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7889] = 1,
ACTIONS(604), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7893] = 1,
ACTIONS(606), 1,
sym_identifier,
2023-10-18 23:26:49 +00:00
[7897] = 1,
ACTIONS(608), 1,
anon_sym_in,
[7901] = 1,
ACTIONS(610), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
[7905] = 1,
ACTIONS(612), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
[7909] = 1,
ACTIONS(614), 1,
anon_sym_in,
[7913] = 1,
ACTIONS(616), 1,
anon_sym_RBRACE,
[7917] = 1,
ACTIONS(618), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
[7921] = 1,
ACTIONS(620), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
[7925] = 1,
ACTIONS(622), 1,
2023-10-18 22:18:41 +00:00
anon_sym_in,
2023-10-18 23:26:49 +00:00
[7929] = 1,
ACTIONS(624), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LT,
2023-10-18 23:26:49 +00:00
[7933] = 1,
ACTIONS(626), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7937] = 1,
ACTIONS(628), 1,
anon_sym_RBRACE,
[7941] = 1,
ACTIONS(630), 1,
anon_sym_LT,
[7945] = 1,
ACTIONS(632), 1,
anon_sym_from,
2023-10-18 23:26:49 +00:00
[7949] = 1,
ACTIONS(634), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7953] = 1,
ACTIONS(636), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
[7957] = 1,
ACTIONS(638), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7961] = 1,
ACTIONS(640), 1,
anon_sym_from,
[7965] = 1,
ACTIONS(642), 1,
anon_sym_LT,
[7969] = 1,
ACTIONS(644), 1,
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7973] = 1,
ACTIONS(646), 1,
2023-10-18 22:18:41 +00:00
anon_sym_LBRACE,
2023-10-18 23:26:49 +00:00
[7977] = 1,
ACTIONS(648), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
2023-10-18 23:26:49 +00:00
[7981] = 1,
ACTIONS(650), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7985] = 1,
ACTIONS(652), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7989] = 1,
ACTIONS(654), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[7993] = 1,
ACTIONS(656), 1,
anon_sym_RBRACE,
[7997] = 1,
ACTIONS(658), 1,
2023-10-18 22:18:41 +00:00
anon_sym_RBRACE,
2023-10-18 23:26:49 +00:00
[8001] = 1,
ACTIONS(660), 1,
2023-10-18 22:18:41 +00:00
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
2023-10-18 22:18:41 +00:00
[SMALL_STATE(3)] = 104,
[SMALL_STATE(4)] = 208,
[SMALL_STATE(5)] = 309,
[SMALL_STATE(6)] = 409,
2023-10-18 23:26:49 +00:00
[SMALL_STATE(7)] = 473,
[SMALL_STATE(8)] = 573,
[SMALL_STATE(9)] = 673,
[SMALL_STATE(10)] = 773,
[SMALL_STATE(11)] = 873,
[SMALL_STATE(12)] = 973,
[SMALL_STATE(13)] = 1073,
[SMALL_STATE(14)] = 1173,
[SMALL_STATE(15)] = 1273,
[SMALL_STATE(16)] = 1349,
[SMALL_STATE(17)] = 1449,
[SMALL_STATE(18)] = 1549,
[SMALL_STATE(19)] = 1649,
[SMALL_STATE(20)] = 1725,
[SMALL_STATE(21)] = 1825,
[SMALL_STATE(22)] = 1901,
[SMALL_STATE(23)] = 2001,
[SMALL_STATE(24)] = 2101,
[SMALL_STATE(25)] = 2201,
2023-10-18 22:18:41 +00:00
[SMALL_STATE(26)] = 2301,
[SMALL_STATE(27)] = 2397,
[SMALL_STATE(28)] = 2493,
[SMALL_STATE(29)] = 2589,
[SMALL_STATE(30)] = 2685,
[SMALL_STATE(31)] = 2781,
2023-10-18 23:26:49 +00:00
[SMALL_STATE(32)] = 2839,
2023-10-18 22:18:41 +00:00
[SMALL_STATE(33)] = 2889,
2023-10-18 23:26:49 +00:00
[SMALL_STATE(34)] = 2947,
[SMALL_STATE(35)] = 2998,
[SMALL_STATE(36)] = 3043,
[SMALL_STATE(37)] = 3088,
[SMALL_STATE(38)] = 3132,
[SMALL_STATE(39)] = 3176,
[SMALL_STATE(40)] = 3220,
[SMALL_STATE(41)] = 3264,
[SMALL_STATE(42)] = 3308,
[SMALL_STATE(43)] = 3352,
[SMALL_STATE(44)] = 3396,
[SMALL_STATE(45)] = 3440,
[SMALL_STATE(46)] = 3484,
[SMALL_STATE(47)] = 3528,
[SMALL_STATE(48)] = 3572,
[SMALL_STATE(49)] = 3627,
[SMALL_STATE(50)] = 3682,
[SMALL_STATE(51)] = 3752,
[SMALL_STATE(52)] = 3822,
[SMALL_STATE(53)] = 3892,
[SMALL_STATE(54)] = 3937,
[SMALL_STATE(55)] = 3985,
[SMALL_STATE(56)] = 4026,
[SMALL_STATE(57)] = 4067,
[SMALL_STATE(58)] = 4103,
2023-10-18 22:18:41 +00:00
[SMALL_STATE(59)] = 4133,
2023-10-18 23:26:49 +00:00
[SMALL_STATE(60)] = 4163,
[SMALL_STATE(61)] = 4217,
[SMALL_STATE(62)] = 4270,
[SMALL_STATE(63)] = 4323,
[SMALL_STATE(64)] = 4376,
[SMALL_STATE(65)] = 4407,
[SMALL_STATE(66)] = 4438,
[SMALL_STATE(67)] = 4491,
[SMALL_STATE(68)] = 4544,
[SMALL_STATE(69)] = 4597,
[SMALL_STATE(70)] = 4650,
[SMALL_STATE(71)] = 4703,
[SMALL_STATE(72)] = 4756,
[SMALL_STATE(73)] = 4809,
[SMALL_STATE(74)] = 4862,
[SMALL_STATE(75)] = 4915,
[SMALL_STATE(76)] = 4943,
[SMALL_STATE(77)] = 4971,
[SMALL_STATE(78)] = 4999,
[SMALL_STATE(79)] = 5027,
[SMALL_STATE(80)] = 5055,
[SMALL_STATE(81)] = 5083,
[SMALL_STATE(82)] = 5111,
[SMALL_STATE(83)] = 5139,
[SMALL_STATE(84)] = 5167,
[SMALL_STATE(85)] = 5195,
[SMALL_STATE(86)] = 5223,
[SMALL_STATE(87)] = 5251,
[SMALL_STATE(88)] = 5279,
[SMALL_STATE(89)] = 5326,
[SMALL_STATE(90)] = 5373,
[SMALL_STATE(91)] = 5420,
[SMALL_STATE(92)] = 5467,
[SMALL_STATE(93)] = 5514,
[SMALL_STATE(94)] = 5561,
[SMALL_STATE(95)] = 5608,
[SMALL_STATE(96)] = 5655,
[SMALL_STATE(97)] = 5702,
[SMALL_STATE(98)] = 5749,
[SMALL_STATE(99)] = 5798,
[SMALL_STATE(100)] = 5845,
[SMALL_STATE(101)] = 5892,
[SMALL_STATE(102)] = 5939,
[SMALL_STATE(103)] = 5986,
[SMALL_STATE(104)] = 6033,
[SMALL_STATE(105)] = 6080,
[SMALL_STATE(106)] = 6127,
[SMALL_STATE(107)] = 6174,
[SMALL_STATE(108)] = 6223,
[SMALL_STATE(109)] = 6270,
[SMALL_STATE(110)] = 6296,
[SMALL_STATE(111)] = 6327,
[SMALL_STATE(112)] = 6354,
[SMALL_STATE(113)] = 6385,
[SMALL_STATE(114)] = 6414,
[SMALL_STATE(115)] = 6446,
[SMALL_STATE(116)] = 6472,
[SMALL_STATE(117)] = 6504,
[SMALL_STATE(118)] = 6536,
[SMALL_STATE(119)] = 6557,
[SMALL_STATE(120)] = 6586,
[SMALL_STATE(121)] = 6615,
[SMALL_STATE(122)] = 6644,
[SMALL_STATE(123)] = 6665,
[SMALL_STATE(124)] = 6694,
[SMALL_STATE(125)] = 6715,
[SMALL_STATE(126)] = 6744,
[SMALL_STATE(127)] = 6773,
[SMALL_STATE(128)] = 6794,
[SMALL_STATE(129)] = 6823,
[SMALL_STATE(130)] = 6852,
[SMALL_STATE(131)] = 6873,
[SMALL_STATE(132)] = 6894,
[SMALL_STATE(133)] = 6915,
[SMALL_STATE(134)] = 6936,
[SMALL_STATE(135)] = 6957,
[SMALL_STATE(136)] = 6978,
[SMALL_STATE(137)] = 7007,
[SMALL_STATE(138)] = 7028,
[SMALL_STATE(139)] = 7049,
[SMALL_STATE(140)] = 7070,
[SMALL_STATE(141)] = 7090,
[SMALL_STATE(142)] = 7110,
[SMALL_STATE(143)] = 7130,
[SMALL_STATE(144)] = 7156,
[SMALL_STATE(145)] = 7176,
[SMALL_STATE(146)] = 7196,
[SMALL_STATE(147)] = 7216,
[SMALL_STATE(148)] = 7242,
[SMALL_STATE(149)] = 7262,
[SMALL_STATE(150)] = 7282,
[SMALL_STATE(151)] = 7302,
[SMALL_STATE(152)] = 7322,
[SMALL_STATE(153)] = 7342,
[SMALL_STATE(154)] = 7362,
[SMALL_STATE(155)] = 7382,
[SMALL_STATE(156)] = 7403,
[SMALL_STATE(157)] = 7424,
[SMALL_STATE(158)] = 7445,
[SMALL_STATE(159)] = 7466,
[SMALL_STATE(160)] = 7484,
[SMALL_STATE(161)] = 7501,
[SMALL_STATE(162)] = 7517,
[SMALL_STATE(163)] = 7533,
[SMALL_STATE(164)] = 7544,
[SMALL_STATE(165)] = 7555,
[SMALL_STATE(166)] = 7566,
[SMALL_STATE(167)] = 7576,
[SMALL_STATE(168)] = 7586,
[SMALL_STATE(169)] = 7594,
[SMALL_STATE(170)] = 7604,
[SMALL_STATE(171)] = 7614,
[SMALL_STATE(172)] = 7624,
[SMALL_STATE(173)] = 7634,
[SMALL_STATE(174)] = 7644,
[SMALL_STATE(175)] = 7652,
[SMALL_STATE(176)] = 7662,
[SMALL_STATE(177)] = 7672,
[SMALL_STATE(178)] = 7682,
[SMALL_STATE(179)] = 7692,
[SMALL_STATE(180)] = 7702,
[SMALL_STATE(181)] = 7712,
[SMALL_STATE(182)] = 7722,
[SMALL_STATE(183)] = 7730,
[SMALL_STATE(184)] = 7740,
[SMALL_STATE(185)] = 7750,
[SMALL_STATE(186)] = 7760,
[SMALL_STATE(187)] = 7767,
[SMALL_STATE(188)] = 7774,
[SMALL_STATE(189)] = 7781,
[SMALL_STATE(190)] = 7788,
[SMALL_STATE(191)] = 7795,
[SMALL_STATE(192)] = 7802,
[SMALL_STATE(193)] = 7807,
[SMALL_STATE(194)] = 7814,
[SMALL_STATE(195)] = 7821,
[SMALL_STATE(196)] = 7825,
[SMALL_STATE(197)] = 7829,
[SMALL_STATE(198)] = 7833,
[SMALL_STATE(199)] = 7837,
[SMALL_STATE(200)] = 7841,
[SMALL_STATE(201)] = 7845,
[SMALL_STATE(202)] = 7849,
[SMALL_STATE(203)] = 7853,
[SMALL_STATE(204)] = 7857,
[SMALL_STATE(205)] = 7861,
[SMALL_STATE(206)] = 7865,
[SMALL_STATE(207)] = 7869,
[SMALL_STATE(208)] = 7873,
[SMALL_STATE(209)] = 7877,
[SMALL_STATE(210)] = 7881,
[SMALL_STATE(211)] = 7885,
[SMALL_STATE(212)] = 7889,
[SMALL_STATE(213)] = 7893,
[SMALL_STATE(214)] = 7897,
[SMALL_STATE(215)] = 7901,
[SMALL_STATE(216)] = 7905,
[SMALL_STATE(217)] = 7909,
[SMALL_STATE(218)] = 7913,
[SMALL_STATE(219)] = 7917,
[SMALL_STATE(220)] = 7921,
[SMALL_STATE(221)] = 7925,
[SMALL_STATE(222)] = 7929,
[SMALL_STATE(223)] = 7933,
[SMALL_STATE(224)] = 7937,
[SMALL_STATE(225)] = 7941,
[SMALL_STATE(226)] = 7945,
[SMALL_STATE(227)] = 7949,
[SMALL_STATE(228)] = 7953,
[SMALL_STATE(229)] = 7957,
[SMALL_STATE(230)] = 7961,
[SMALL_STATE(231)] = 7965,
[SMALL_STATE(232)] = 7969,
[SMALL_STATE(233)] = 7973,
[SMALL_STATE(234)] = 7977,
[SMALL_STATE(235)] = 7981,
[SMALL_STATE(236)] = 7985,
[SMALL_STATE(237)] = 7989,
[SMALL_STATE(238)] = 7993,
[SMALL_STATE(239)] = 7997,
[SMALL_STATE(240)] = 8001,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
2023-10-18 23:26:49 +00:00
[3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34),
[5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207),
2023-10-18 22:18:41 +00:00
[41] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
2023-10-18 23:26:49 +00:00
[45] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(34),
[48] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(87),
[51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(21),
[54] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(39),
[57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(39),
[60] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41),
[63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70),
[66] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(186),
[69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(177),
[72] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(222),
[75] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(91),
[78] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(106),
[81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(220),
[84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(219),
[87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(196),
[90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(216),
[93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(213),
[96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(182),
[99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(207),
2023-10-18 22:18:41 +00:00
[102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2),
2023-10-18 23:26:49 +00:00
[104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(34),
[107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(87),
[110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(21),
[113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(39),
[116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(39),
[119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(41),
[122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(70),
[125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(186),
[128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(177),
[131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(222),
[134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(91),
[137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(106),
[140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(220),
[143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(219),
[146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(196),
[149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(216),
[152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(213),
[155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(182),
[158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_item_repeat1, 2), SHIFT_REPEAT(207),
[161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item, 1),
[163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item, 1),
[165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81),
[167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50),
[169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225),
[185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160),
[187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52),
[189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113),
[195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234),
[197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168),
[199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161),
[205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162),
[209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161),
[211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 5),
[217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 5),
[219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
[225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 6),
[249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 6),
[251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 7),
[257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 7),
[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),
[267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 6),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 6),
[287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46),
[289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 6),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 6),
[299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203),
[313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(92),
[324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 5),
[326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 5),
[328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 5),
[330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 5),
[332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(46),
[335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(21),
[338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(39),
[343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(39),
[346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(41),
[349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(70),
[352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(186),
[355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(177),
[358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(222),
[361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4),
[369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98),
[377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 7),
[397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 7),
[399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 7),
[401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 7),
[403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 5),
[405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 5),
[407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 4),
[409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 4),
[411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 4),
[413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 4),
[415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 7),
[417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 7),
[419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 7),
[421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 7),
[423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async, 3),
[429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async, 3),
[431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1),
[433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 1),
[435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153),
[441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231),
[453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
[455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_repeat1, 3),
[461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tool, 1),
[487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tool, 1),
[489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2), SHIFT_REPEAT(70),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_insert_repeat1, 2),
[506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(199),
[523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 1),
[529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(174),
[546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141),
[552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18),
[566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[590] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78),
[656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77),
[658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
};
#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