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

16613 lines
371 KiB
C

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
#define STATE_COUNT 385
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 103
#define ALIAS_COUNT 0
#define TOKEN_COUNT 60
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 4
#define MAX_ALIAS_SEQUENCE_LENGTH 6
#define PRODUCTION_ID_COUNT 3
enum {
sym_identifier = 1,
sym__comment = 2,
anon_sym_async = 3,
anon_sym_LBRACE = 4,
anon_sym_RBRACE = 5,
anon_sym_SEMI = 6,
anon_sym_LPAREN = 7,
anon_sym_RPAREN = 8,
anon_sym_COMMA = 9,
sym_integer = 10,
sym_float = 11,
sym_string = 12,
anon_sym_true = 13,
anon_sym_false = 14,
anon_sym_LBRACK = 15,
anon_sym_RBRACK = 16,
anon_sym_EQ = 17,
anon_sym_COLON = 18,
anon_sym_DOT_DOT = 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 = 29,
anon_sym_LT = 30,
anon_sym_GT_EQ = 31,
anon_sym_LT_EQ = 32,
anon_sym_PLUS_EQ = 33,
anon_sym_DASH_EQ = 34,
anon_sym_if = 35,
anon_sym_elseif = 36,
anon_sym_else = 37,
anon_sym_match = 38,
anon_sym_EQ_GT = 39,
anon_sym_while = 40,
anon_sym_for = 41,
anon_sym_asyncfor = 42,
anon_sym_in = 43,
anon_sym_select = 44,
anon_sym_from = 45,
anon_sym_insert = 46,
anon_sym_into = 47,
anon_sym_PIPE = 48,
anon_sym_table = 49,
anon_sym_return = 50,
anon_sym_use = 51,
anon_sym_any = 52,
anon_sym_bool = 53,
anon_sym_fn = 54,
anon_sym_int = 55,
anon_sym_list = 56,
anon_sym_map = 57,
anon_sym_str = 58,
anon_sym_DASH_GT = 59,
sym_root = 60,
sym_block = 61,
sym_statement = 62,
sym_expression = 63,
sym__expression_kind = 64,
aux_sym__expression_list = 65,
sym_value = 66,
sym_boolean = 67,
sym_list = 68,
sym_map = 69,
sym_index = 70,
sym_math = 71,
sym_math_operator = 72,
sym_logic = 73,
sym_logic_operator = 74,
sym_assignment = 75,
sym_index_assignment = 76,
sym_assignment_operator = 77,
sym_if_else = 78,
sym_if = 79,
sym_else_if = 80,
sym_else = 81,
sym_match = 82,
sym_while = 83,
sym_for = 84,
sym_select = 85,
sym_insert = 86,
sym_identifier_list = 87,
sym_table = 88,
sym_return = 89,
sym_use = 90,
sym_type = 91,
sym_function = 92,
sym_parameter = 93,
sym_function_call = 94,
sym_yield = 95,
aux_sym_root_repeat1 = 96,
aux_sym_list_repeat1 = 97,
aux_sym_map_repeat1 = 98,
aux_sym_if_else_repeat1 = 99,
aux_sym_match_repeat1 = 100,
aux_sym_identifier_list_repeat1 = 101,
aux_sym_function_repeat1 = 102,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[sym__comment] = "_comment",
[anon_sym_async] = "async",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_SEMI] = ";",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[anon_sym_COMMA] = ",",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
[anon_sym_EQ] = "=",
[anon_sym_COLON] = ":",
[anon_sym_DOT_DOT] = "..",
[anon_sym_PLUS] = "+",
[anon_sym_DASH] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT] = ">",
[anon_sym_LT] = "<",
[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_match] = "match",
[anon_sym_EQ_GT] = "=>",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_asyncfor] = "async for",
[anon_sym_in] = "in",
[anon_sym_select] = "select",
[anon_sym_from] = "from",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
[anon_sym_PIPE] = "|",
[anon_sym_table] = "table",
[anon_sym_return] = "return",
[anon_sym_use] = "use",
[anon_sym_any] = "any",
[anon_sym_bool] = "bool",
[anon_sym_fn] = "fn",
[anon_sym_int] = "int",
[anon_sym_list] = "list",
[anon_sym_map] = "map",
[anon_sym_str] = "str",
[anon_sym_DASH_GT] = "->",
[sym_root] = "root",
[sym_block] = "block",
[sym_statement] = "statement",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[aux_sym__expression_list] = "_expression_list",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_map] = "map",
[sym_index] = "index",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_index_assignment] = "index_assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_match] = "match",
[sym_while] = "while",
[sym_for] = "for",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_identifier_list] = "identifier_list",
[sym_table] = "table",
[sym_return] = "return",
[sym_use] = "use",
[sym_type] = "type",
[sym_function] = "function",
[sym_parameter] = "parameter",
[sym_function_call] = "function_call",
[sym_yield] = "yield",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
[aux_sym_match_repeat1] = "match_repeat1",
[aux_sym_identifier_list_repeat1] = "identifier_list_repeat1",
[aux_sym_function_repeat1] = "function_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[sym__comment] = sym__comment,
[anon_sym_async] = anon_sym_async,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[anon_sym_COMMA] = anon_sym_COMMA,
[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_RBRACK] = anon_sym_RBRACK,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_COLON] = anon_sym_COLON,
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
[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] = anon_sym_GT,
[anon_sym_LT] = anon_sym_LT,
[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_match] = anon_sym_match,
[anon_sym_EQ_GT] = anon_sym_EQ_GT,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[anon_sym_asyncfor] = anon_sym_asyncfor,
[anon_sym_in] = anon_sym_in,
[anon_sym_select] = anon_sym_select,
[anon_sym_from] = anon_sym_from,
[anon_sym_insert] = anon_sym_insert,
[anon_sym_into] = anon_sym_into,
[anon_sym_PIPE] = anon_sym_PIPE,
[anon_sym_table] = anon_sym_table,
[anon_sym_return] = anon_sym_return,
[anon_sym_use] = anon_sym_use,
[anon_sym_any] = anon_sym_any,
[anon_sym_bool] = anon_sym_bool,
[anon_sym_fn] = anon_sym_fn,
[anon_sym_int] = anon_sym_int,
[anon_sym_list] = anon_sym_list,
[anon_sym_map] = anon_sym_map,
[anon_sym_str] = anon_sym_str,
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
[sym_root] = sym_root,
[sym_block] = sym_block,
[sym_statement] = sym_statement,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[aux_sym__expression_list] = aux_sym__expression_list,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_map] = sym_map,
[sym_index] = sym_index,
[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_index_assignment] = sym_index_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_match] = sym_match,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_identifier_list] = sym_identifier_list,
[sym_table] = sym_table,
[sym_return] = sym_return,
[sym_use] = sym_use,
[sym_type] = sym_type,
[sym_function] = sym_function,
[sym_parameter] = sym_parameter,
[sym_function_call] = sym_function_call,
[sym_yield] = sym_yield,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
[aux_sym_match_repeat1] = aux_sym_match_repeat1,
[aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1,
[aux_sym_function_repeat1] = aux_sym_function_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym__comment] = {
.visible = false,
.named = true,
},
[anon_sym_async] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.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_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[anon_sym_DOT_DOT] = {
.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] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.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_match] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_GT] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_asyncfor] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_select] = {
.visible = true,
.named = false,
},
[anon_sym_from] = {
.visible = true,
.named = false,
},
[anon_sym_insert] = {
.visible = true,
.named = false,
},
[anon_sym_into] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
.visible = true,
.named = false,
},
[anon_sym_return] = {
.visible = true,
.named = false,
},
[anon_sym_use] = {
.visible = true,
.named = false,
},
[anon_sym_any] = {
.visible = true,
.named = false,
},
[anon_sym_bool] = {
.visible = true,
.named = false,
},
[anon_sym_fn] = {
.visible = true,
.named = false,
},
[anon_sym_int] = {
.visible = true,
.named = false,
},
[anon_sym_list] = {
.visible = true,
.named = false,
},
[anon_sym_map] = {
.visible = true,
.named = false,
},
[anon_sym_str] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
[sym_block] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[aux_sym__expression_list] = {
.visible = false,
.named = false,
},
[sym_value] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
[sym_index] = {
.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_index_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_match] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_identifier_list] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_return] = {
.visible = true,
.named = true,
},
[sym_use] = {
.visible = true,
.named = true,
},
[sym_type] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_parameter] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym_yield] = {
.visible = true,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_function_repeat1] = {
.visible = false,
.named = false,
},
};
enum {
field_assignment_operator = 1,
field_identifier = 2,
field_statement = 3,
field_type = 4,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_assignment_operator] = "assignment_operator",
[field_identifier] = "identifier",
[field_statement] = "statement",
[field_type] = "type",
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 3},
[2] = {.index = 3, .length = 4},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_assignment_operator, 1},
{field_identifier, 0},
{field_statement, 2},
[3] =
{field_assignment_operator, 2},
{field_identifier, 0},
{field_statement, 3},
{field_type, 1},
};
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] = 2,
[5] = 5,
[6] = 5,
[7] = 7,
[8] = 8,
[9] = 7,
[10] = 5,
[11] = 7,
[12] = 7,
[13] = 5,
[14] = 5,
[15] = 7,
[16] = 5,
[17] = 7,
[18] = 5,
[19] = 7,
[20] = 20,
[21] = 21,
[22] = 21,
[23] = 21,
[24] = 20,
[25] = 20,
[26] = 21,
[27] = 20,
[28] = 21,
[29] = 21,
[30] = 20,
[31] = 21,
[32] = 20,
[33] = 20,
[34] = 34,
[35] = 35,
[36] = 36,
[37] = 36,
[38] = 38,
[39] = 39,
[40] = 39,
[41] = 38,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 44,
[46] = 46,
[47] = 47,
[48] = 42,
[49] = 49,
[50] = 47,
[51] = 46,
[52] = 43,
[53] = 53,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 61,
[63] = 63,
[64] = 64,
[65] = 65,
[66] = 66,
[67] = 67,
[68] = 68,
[69] = 61,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 73,
[74] = 55,
[75] = 75,
[76] = 55,
[77] = 77,
[78] = 78,
[79] = 79,
[80] = 79,
[81] = 81,
[82] = 82,
[83] = 82,
[84] = 84,
[85] = 85,
[86] = 86,
[87] = 68,
[88] = 47,
[89] = 43,
[90] = 46,
[91] = 44,
[92] = 42,
[93] = 44,
[94] = 58,
[95] = 42,
[96] = 47,
[97] = 46,
[98] = 43,
[99] = 70,
[100] = 63,
[101] = 54,
[102] = 53,
[103] = 71,
[104] = 59,
[105] = 64,
[106] = 65,
[107] = 67,
[108] = 108,
[109] = 73,
[110] = 66,
[111] = 77,
[112] = 72,
[113] = 57,
[114] = 114,
[115] = 60,
[116] = 116,
[117] = 117,
[118] = 86,
[119] = 119,
[120] = 85,
[121] = 44,
[122] = 122,
[123] = 122,
[124] = 43,
[125] = 42,
[126] = 122,
[127] = 44,
[128] = 46,
[129] = 47,
[130] = 130,
[131] = 131,
[132] = 71,
[133] = 70,
[134] = 53,
[135] = 64,
[136] = 65,
[137] = 137,
[138] = 130,
[139] = 47,
[140] = 73,
[141] = 141,
[142] = 66,
[143] = 67,
[144] = 54,
[145] = 145,
[146] = 146,
[147] = 59,
[148] = 57,
[149] = 141,
[150] = 77,
[151] = 63,
[152] = 137,
[153] = 58,
[154] = 72,
[155] = 131,
[156] = 60,
[157] = 131,
[158] = 158,
[159] = 141,
[160] = 137,
[161] = 161,
[162] = 42,
[163] = 68,
[164] = 43,
[165] = 46,
[166] = 130,
[167] = 58,
[168] = 68,
[169] = 58,
[170] = 68,
[171] = 171,
[172] = 172,
[173] = 173,
[174] = 174,
[175] = 175,
[176] = 176,
[177] = 177,
[178] = 178,
[179] = 179,
[180] = 180,
[181] = 180,
[182] = 182,
[183] = 183,
[184] = 184,
[185] = 183,
[186] = 179,
[187] = 178,
[188] = 78,
[189] = 180,
[190] = 178,
[191] = 184,
[192] = 192,
[193] = 183,
[194] = 179,
[195] = 182,
[196] = 192,
[197] = 49,
[198] = 179,
[199] = 199,
[200] = 200,
[201] = 201,
[202] = 202,
[203] = 203,
[204] = 184,
[205] = 180,
[206] = 206,
[207] = 183,
[208] = 180,
[209] = 179,
[210] = 178,
[211] = 211,
[212] = 183,
[213] = 183,
[214] = 214,
[215] = 179,
[216] = 178,
[217] = 183,
[218] = 218,
[219] = 175,
[220] = 180,
[221] = 58,
[222] = 203,
[223] = 180,
[224] = 184,
[225] = 225,
[226] = 180,
[227] = 227,
[228] = 211,
[229] = 183,
[230] = 179,
[231] = 179,
[232] = 178,
[233] = 178,
[234] = 178,
[235] = 174,
[236] = 173,
[237] = 203,
[238] = 202,
[239] = 206,
[240] = 240,
[241] = 176,
[242] = 211,
[243] = 243,
[244] = 68,
[245] = 245,
[246] = 177,
[247] = 56,
[248] = 44,
[249] = 44,
[250] = 47,
[251] = 82,
[252] = 46,
[253] = 253,
[254] = 81,
[255] = 84,
[256] = 43,
[257] = 42,
[258] = 82,
[259] = 259,
[260] = 42,
[261] = 261,
[262] = 47,
[263] = 263,
[264] = 261,
[265] = 43,
[266] = 46,
[267] = 267,
[268] = 267,
[269] = 259,
[270] = 263,
[271] = 271,
[272] = 271,
[273] = 201,
[274] = 68,
[275] = 58,
[276] = 276,
[277] = 277,
[278] = 278,
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 116,
[283] = 117,
[284] = 284,
[285] = 285,
[286] = 119,
[287] = 145,
[288] = 161,
[289] = 289,
[290] = 290,
[291] = 289,
[292] = 290,
[293] = 289,
[294] = 290,
[295] = 289,
[296] = 290,
[297] = 297,
[298] = 298,
[299] = 299,
[300] = 299,
[301] = 298,
[302] = 182,
[303] = 182,
[304] = 199,
[305] = 200,
[306] = 214,
[307] = 172,
[308] = 171,
[309] = 227,
[310] = 240,
[311] = 243,
[312] = 312,
[313] = 299,
[314] = 299,
[315] = 245,
[316] = 312,
[317] = 225,
[318] = 218,
[319] = 312,
[320] = 312,
[321] = 321,
[322] = 321,
[323] = 323,
[324] = 324,
[325] = 325,
[326] = 326,
[327] = 327,
[328] = 328,
[329] = 325,
[330] = 327,
[331] = 331,
[332] = 332,
[333] = 331,
[334] = 332,
[335] = 321,
[336] = 336,
[337] = 327,
[338] = 332,
[339] = 339,
[340] = 340,
[341] = 326,
[342] = 342,
[343] = 331,
[344] = 321,
[345] = 331,
[346] = 346,
[347] = 346,
[348] = 346,
[349] = 349,
[350] = 346,
[351] = 349,
[352] = 346,
[353] = 353,
[354] = 346,
[355] = 355,
[356] = 356,
[357] = 357,
[358] = 346,
[359] = 346,
[360] = 360,
[361] = 361,
[362] = 361,
[363] = 361,
[364] = 361,
[365] = 365,
[366] = 366,
[367] = 367,
[368] = 368,
[369] = 369,
[370] = 368,
[371] = 366,
[372] = 361,
[373] = 361,
[374] = 361,
[375] = 375,
[376] = 376,
[377] = 367,
[378] = 360,
[379] = 379,
[380] = 380,
[381] = 375,
[382] = 369,
[383] = 367,
[384] = 365,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(29);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(35);
if (lookahead == ')') ADVANCE(36);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(60);
if (lookahead == ',') ADVANCE(37);
if (lookahead == '-') ADVANCE(63);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == ':') ADVANCE(57);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(56);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '[') ADVANCE(52);
if (lookahead == ']') ADVANCE(53);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(45);
if (lookahead == 'e') ADVANCE(43);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(83);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(35);
if (lookahead == ')') ADVANCE(36);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(59);
if (lookahead == ',') ADVANCE(37);
if (lookahead == '-') ADVANCE(64);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == ':') ADVANCE(57);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(13);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '[') ADVANCE(52);
if (lookahead == ']') ADVANCE(53);
if (lookahead == '`') ADVANCE(15);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(83);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(60);
if (lookahead == ',') ADVANCE(37);
if (lookahead == '-') ADVANCE(61);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (lookahead == ':') ADVANCE(57);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(56);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 3:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(60);
if (lookahead == ',') ADVANCE(37);
if (lookahead == '-') ADVANCE(61);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (lookahead == ':') ADVANCE(57);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(55);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 4:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(59);
if (lookahead == ',') ADVANCE(37);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (lookahead == ':') ADVANCE(57);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(14);
if (lookahead == '>') ADVANCE(73);
if (lookahead == 'e') ADVANCE(43);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 5:
if (lookahead == '!') ADVANCE(11);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(59);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (lookahead == ':') ADVANCE(57);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(14);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(5)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 6:
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(35);
if (lookahead == ')') ADVANCE(36);
if (lookahead == '+') ADVANCE(12);
if (lookahead == ',') ADVANCE(37);
if (lookahead == '-') ADVANCE(24);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '=') ADVANCE(54);
if (lookahead == '[') ADVANCE(52);
if (lookahead == ']') ADVANCE(53);
if (lookahead == '`') ADVANCE(15);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(82);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(6)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 7:
if (lookahead == '"') ADVANCE(51);
if (lookahead != 0) ADVANCE(7);
END_STATE();
case 8:
if (lookahead == '&') ADVANCE(70);
END_STATE();
case 9:
if (lookahead == '\'') ADVANCE(51);
if (lookahead != 0) ADVANCE(9);
END_STATE();
case 10:
if (lookahead == '.') ADVANCE(58);
END_STATE();
case 11:
if (lookahead == '=') ADVANCE(69);
END_STATE();
case 12:
if (lookahead == '=') ADVANCE(77);
END_STATE();
case 13:
if (lookahead == '=') ADVANCE(68);
END_STATE();
case 14:
if (lookahead == '=') ADVANCE(68);
if (lookahead == '>') ADVANCE(80);
END_STATE();
case 15:
if (lookahead == '`') ADVANCE(51);
if (lookahead != 0) ADVANCE(15);
END_STATE();
case 16:
if (lookahead == 'f') ADVANCE(19);
END_STATE();
case 17:
if (lookahead == 'f') ADVANCE(79);
END_STATE();
case 18:
if (lookahead == 'i') ADVANCE(17);
END_STATE();
case 19:
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 20:
if (lookahead == 'r') ADVANCE(81);
END_STATE();
case 21:
if (lookahead == '|') ADVANCE(31);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(30);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 22:
if (lookahead == '|') ADVANCE(71);
END_STATE();
case 23:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
END_STATE();
case 24:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == '=') ADVANCE(78);
END_STATE();
case 25:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
END_STATE();
case 26:
if (eof) ADVANCE(29);
if (lookahead == '!') ADVANCE(11);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(67);
if (lookahead == '&') ADVANCE(8);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(35);
if (lookahead == '*') ADVANCE(65);
if (lookahead == '+') ADVANCE(60);
if (lookahead == '-') ADVANCE(63);
if (lookahead == '.') ADVANCE(10);
if (lookahead == '/') ADVANCE(66);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == ':') ADVANCE(57);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '<') ADVANCE(74);
if (lookahead == '=') ADVANCE(55);
if (lookahead == '>') ADVANCE(73);
if (lookahead == '[') ADVANCE(52);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(45);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(83);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(26)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 27:
if (eof) ADVANCE(29);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(35);
if (lookahead == '+') ADVANCE(12);
if (lookahead == '-') ADVANCE(24);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '=') ADVANCE(54);
if (lookahead == '>') ADVANCE(72);
if (lookahead == '[') ADVANCE(52);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(45);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(82);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(27)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 28:
if (eof) ADVANCE(29);
if (lookahead == '"') ADVANCE(7);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '\'') ADVANCE(9);
if (lookahead == '(') ADVANCE(35);
if (lookahead == '-') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == ';') ADVANCE(34);
if (lookahead == '[') ADVANCE(52);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(45);
if (lookahead == 'e') ADVANCE(43);
if (lookahead == '{') ADVANCE(32);
if (lookahead == '|') ADVANCE(82);
if (lookahead == '}') ADVANCE(33);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(28)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 29:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 30:
ACCEPT_TOKEN(sym__comment);
END_STATE();
case 31:
ACCEPT_TOKEN(sym__comment);
if (lookahead == '|') ADVANCE(31);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(30);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 38:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 39:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 40:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 41:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'c') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 42:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(39);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 43:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(46);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 44:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 45:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(47);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 46:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 47:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(44);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 48:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(38);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(48);
END_STATE();
case 49:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(25);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
END_STATE();
case 50:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(50);
END_STATE();
case 51:
ACCEPT_TOKEN(sym_string);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(68);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(68);
if (lookahead == '>') ADVANCE(80);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 59:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(77);
END_STATE();
case 61:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(78);
if (lookahead == '>') ADVANCE(84);
END_STATE();
case 62:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '>') ADVANCE(84);
END_STATE();
case 63:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == '=') ADVANCE(78);
if (lookahead == '>') ADVANCE(84);
END_STATE();
case 64:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
if (lookahead == '>') ADVANCE(84);
END_STATE();
case 65:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 66:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 67:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 68:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 69:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 70:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 72:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(75);
END_STATE();
case 74:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(76);
END_STATE();
case 75:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 76:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 77:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 78:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 80:
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
case 81:
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
case 82:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 83:
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '|') ADVANCE(71);
END_STATE();
case 84:
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'a') ADVANCE(1);
if (lookahead == 'b') ADVANCE(2);
if (lookahead == 'e') ADVANCE(3);
if (lookahead == 'f') ADVANCE(4);
if (lookahead == 'i') ADVANCE(5);
if (lookahead == 'l') ADVANCE(6);
if (lookahead == 'm') ADVANCE(7);
if (lookahead == 'r') ADVANCE(8);
if (lookahead == 's') ADVANCE(9);
if (lookahead == 't') ADVANCE(10);
if (lookahead == 'u') ADVANCE(11);
if (lookahead == 'w') ADVANCE(12);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
if (lookahead == 'n') ADVANCE(13);
if (lookahead == 's') ADVANCE(14);
END_STATE();
case 2:
if (lookahead == 'o') ADVANCE(15);
END_STATE();
case 3:
if (lookahead == 'l') ADVANCE(16);
END_STATE();
case 4:
if (lookahead == 'a') ADVANCE(17);
if (lookahead == 'n') ADVANCE(18);
if (lookahead == 'o') ADVANCE(19);
if (lookahead == 'r') ADVANCE(20);
END_STATE();
case 5:
if (lookahead == 'f') ADVANCE(21);
if (lookahead == 'n') ADVANCE(22);
END_STATE();
case 6:
if (lookahead == 'i') ADVANCE(23);
END_STATE();
case 7:
if (lookahead == 'a') ADVANCE(24);
END_STATE();
case 8:
if (lookahead == 'e') ADVANCE(25);
END_STATE();
case 9:
if (lookahead == 'e') ADVANCE(26);
if (lookahead == 't') ADVANCE(27);
END_STATE();
case 10:
if (lookahead == 'a') ADVANCE(28);
if (lookahead == 'r') ADVANCE(29);
END_STATE();
case 11:
if (lookahead == 's') ADVANCE(30);
END_STATE();
case 12:
if (lookahead == 'h') ADVANCE(31);
END_STATE();
case 13:
if (lookahead == 'y') ADVANCE(32);
END_STATE();
case 14:
if (lookahead == 'y') ADVANCE(33);
END_STATE();
case 15:
if (lookahead == 'o') ADVANCE(34);
END_STATE();
case 16:
if (lookahead == 's') ADVANCE(35);
END_STATE();
case 17:
if (lookahead == 'l') ADVANCE(36);
END_STATE();
case 18:
ACCEPT_TOKEN(anon_sym_fn);
END_STATE();
case 19:
if (lookahead == 'r') ADVANCE(37);
END_STATE();
case 20:
if (lookahead == 'o') ADVANCE(38);
END_STATE();
case 21:
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 22:
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 's') ADVANCE(39);
if (lookahead == 't') ADVANCE(40);
END_STATE();
case 23:
if (lookahead == 's') ADVANCE(41);
END_STATE();
case 24:
if (lookahead == 'p') ADVANCE(42);
if (lookahead == 't') ADVANCE(43);
END_STATE();
case 25:
if (lookahead == 't') ADVANCE(44);
END_STATE();
case 26:
if (lookahead == 'l') ADVANCE(45);
END_STATE();
case 27:
if (lookahead == 'r') ADVANCE(46);
END_STATE();
case 28:
if (lookahead == 'b') ADVANCE(47);
END_STATE();
case 29:
if (lookahead == 'u') ADVANCE(48);
END_STATE();
case 30:
if (lookahead == 'e') ADVANCE(49);
END_STATE();
case 31:
if (lookahead == 'i') ADVANCE(50);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_any);
END_STATE();
case 33:
if (lookahead == 'n') ADVANCE(51);
END_STATE();
case 34:
if (lookahead == 'l') ADVANCE(52);
END_STATE();
case 35:
if (lookahead == 'e') ADVANCE(53);
END_STATE();
case 36:
if (lookahead == 's') ADVANCE(54);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 38:
if (lookahead == 'm') ADVANCE(55);
END_STATE();
case 39:
if (lookahead == 'e') ADVANCE(56);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_int);
if (lookahead == 'o') ADVANCE(57);
END_STATE();
case 41:
if (lookahead == 't') ADVANCE(58);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_map);
END_STATE();
case 43:
if (lookahead == 'c') ADVANCE(59);
END_STATE();
case 44:
if (lookahead == 'u') ADVANCE(60);
END_STATE();
case 45:
if (lookahead == 'e') ADVANCE(61);
END_STATE();
case 46:
ACCEPT_TOKEN(anon_sym_str);
END_STATE();
case 47:
if (lookahead == 'l') ADVANCE(62);
END_STATE();
case 48:
if (lookahead == 'e') ADVANCE(63);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_use);
END_STATE();
case 50:
if (lookahead == 'l') ADVANCE(64);
END_STATE();
case 51:
if (lookahead == 'c') ADVANCE(65);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_bool);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 54:
if (lookahead == 'e') ADVANCE(66);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_from);
END_STATE();
case 56:
if (lookahead == 'r') ADVANCE(67);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_into);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_list);
END_STATE();
case 59:
if (lookahead == 'h') ADVANCE(68);
END_STATE();
case 60:
if (lookahead == 'r') ADVANCE(69);
END_STATE();
case 61:
if (lookahead == 'c') ADVANCE(70);
END_STATE();
case 62:
if (lookahead == 'e') ADVANCE(71);
END_STATE();
case 63:
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 64:
if (lookahead == 'e') ADVANCE(72);
END_STATE();
case 65:
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 66:
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 67:
if (lookahead == 't') ADVANCE(73);
END_STATE();
case 68:
ACCEPT_TOKEN(anon_sym_match);
END_STATE();
case 69:
if (lookahead == 'n') ADVANCE(74);
END_STATE();
case 70:
if (lookahead == 't') ADVANCE(75);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_table);
END_STATE();
case 72:
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_insert);
END_STATE();
case 74:
ACCEPT_TOKEN(anon_sym_return);
END_STATE();
case 75:
ACCEPT_TOKEN(anon_sym_select);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 27},
[2] = {.lex_state = 27},
[3] = {.lex_state = 27},
[4] = {.lex_state = 27},
[5] = {.lex_state = 27},
[6] = {.lex_state = 27},
[7] = {.lex_state = 27},
[8] = {.lex_state = 27},
[9] = {.lex_state = 27},
[10] = {.lex_state = 27},
[11] = {.lex_state = 27},
[12] = {.lex_state = 27},
[13] = {.lex_state = 27},
[14] = {.lex_state = 27},
[15] = {.lex_state = 27},
[16] = {.lex_state = 27},
[17] = {.lex_state = 27},
[18] = {.lex_state = 27},
[19] = {.lex_state = 27},
[20] = {.lex_state = 27},
[21] = {.lex_state = 27},
[22] = {.lex_state = 27},
[23] = {.lex_state = 27},
[24] = {.lex_state = 27},
[25] = {.lex_state = 27},
[26] = {.lex_state = 27},
[27] = {.lex_state = 27},
[28] = {.lex_state = 27},
[29] = {.lex_state = 27},
[30] = {.lex_state = 27},
[31] = {.lex_state = 27},
[32] = {.lex_state = 27},
[33] = {.lex_state = 27},
[34] = {.lex_state = 27},
[35] = {.lex_state = 27},
[36] = {.lex_state = 27},
[37] = {.lex_state = 27},
[38] = {.lex_state = 27},
[39] = {.lex_state = 27},
[40] = {.lex_state = 27},
[41] = {.lex_state = 27},
[42] = {.lex_state = 26},
[43] = {.lex_state = 26},
[44] = {.lex_state = 26},
[45] = {.lex_state = 26},
[46] = {.lex_state = 26},
[47] = {.lex_state = 26},
[48] = {.lex_state = 26},
[49] = {.lex_state = 26},
[50] = {.lex_state = 26},
[51] = {.lex_state = 26},
[52] = {.lex_state = 26},
[53] = {.lex_state = 26},
[54] = {.lex_state = 26},
[55] = {.lex_state = 1},
[56] = {.lex_state = 26},
[57] = {.lex_state = 26},
[58] = {.lex_state = 26},
[59] = {.lex_state = 26},
[60] = {.lex_state = 26},
[61] = {.lex_state = 1},
[62] = {.lex_state = 1},
[63] = {.lex_state = 26},
[64] = {.lex_state = 26},
[65] = {.lex_state = 26},
[66] = {.lex_state = 26},
[67] = {.lex_state = 26},
[68] = {.lex_state = 26},
[69] = {.lex_state = 1},
[70] = {.lex_state = 26},
[71] = {.lex_state = 26},
[72] = {.lex_state = 26},
[73] = {.lex_state = 26},
[74] = {.lex_state = 1},
[75] = {.lex_state = 26},
[76] = {.lex_state = 1},
[77] = {.lex_state = 26},
[78] = {.lex_state = 26},
[79] = {.lex_state = 1},
[80] = {.lex_state = 1},
[81] = {.lex_state = 26},
[82] = {.lex_state = 26},
[83] = {.lex_state = 26},
[84] = {.lex_state = 26},
[85] = {.lex_state = 27},
[86] = {.lex_state = 27},
[87] = {.lex_state = 1},
[88] = {.lex_state = 1},
[89] = {.lex_state = 1},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
[92] = {.lex_state = 1},
[93] = {.lex_state = 1},
[94] = {.lex_state = 1},
[95] = {.lex_state = 1},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
[104] = {.lex_state = 1},
[105] = {.lex_state = 1},
[106] = {.lex_state = 1},
[107] = {.lex_state = 1},
[108] = {.lex_state = 1},
[109] = {.lex_state = 1},
[110] = {.lex_state = 1},
[111] = {.lex_state = 1},
[112] = {.lex_state = 1},
[113] = {.lex_state = 1},
[114] = {.lex_state = 1},
[115] = {.lex_state = 1},
[116] = {.lex_state = 28},
[117] = {.lex_state = 28},
[118] = {.lex_state = 6},
[119] = {.lex_state = 28},
[120] = {.lex_state = 6},
[121] = {.lex_state = 3},
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
[124] = {.lex_state = 3},
[125] = {.lex_state = 3},
[126] = {.lex_state = 1},
[127] = {.lex_state = 3},
[128] = {.lex_state = 3},
[129] = {.lex_state = 3},
[130] = {.lex_state = 6},
[131] = {.lex_state = 6},
[132] = {.lex_state = 2},
[133] = {.lex_state = 2},
[134] = {.lex_state = 2},
[135] = {.lex_state = 2},
[136] = {.lex_state = 2},
[137] = {.lex_state = 6},
[138] = {.lex_state = 6},
[139] = {.lex_state = 3},
[140] = {.lex_state = 2},
[141] = {.lex_state = 6},
[142] = {.lex_state = 2},
[143] = {.lex_state = 2},
[144] = {.lex_state = 2},
[145] = {.lex_state = 28},
[146] = {.lex_state = 6},
[147] = {.lex_state = 2},
[148] = {.lex_state = 2},
[149] = {.lex_state = 6},
[150] = {.lex_state = 2},
[151] = {.lex_state = 2},
[152] = {.lex_state = 6},
[153] = {.lex_state = 28},
[154] = {.lex_state = 2},
[155] = {.lex_state = 6},
[156] = {.lex_state = 2},
[157] = {.lex_state = 6},
[158] = {.lex_state = 6},
[159] = {.lex_state = 6},
[160] = {.lex_state = 6},
[161] = {.lex_state = 28},
[162] = {.lex_state = 3},
[163] = {.lex_state = 28},
[164] = {.lex_state = 3},
[165] = {.lex_state = 3},
[166] = {.lex_state = 6},
[167] = {.lex_state = 3},
[168] = {.lex_state = 3},
[169] = {.lex_state = 4},
[170] = {.lex_state = 4},
[171] = {.lex_state = 27},
[172] = {.lex_state = 27},
[173] = {.lex_state = 6},
[174] = {.lex_state = 6},
[175] = {.lex_state = 6},
[176] = {.lex_state = 6},
[177] = {.lex_state = 6},
[178] = {.lex_state = 6},
[179] = {.lex_state = 6},
[180] = {.lex_state = 6},
[181] = {.lex_state = 6},
[182] = {.lex_state = 27},
[183] = {.lex_state = 6},
[184] = {.lex_state = 6},
[185] = {.lex_state = 6},
[186] = {.lex_state = 6},
[187] = {.lex_state = 6},
[188] = {.lex_state = 3},
[189] = {.lex_state = 6},
[190] = {.lex_state = 6},
[191] = {.lex_state = 6},
[192] = {.lex_state = 6},
[193] = {.lex_state = 6},
[194] = {.lex_state = 6},
[195] = {.lex_state = 27},
[196] = {.lex_state = 6},
[197] = {.lex_state = 3},
[198] = {.lex_state = 6},
[199] = {.lex_state = 27},
[200] = {.lex_state = 27},
[201] = {.lex_state = 27},
[202] = {.lex_state = 6},
[203] = {.lex_state = 6},
[204] = {.lex_state = 6},
[205] = {.lex_state = 6},
[206] = {.lex_state = 6},
[207] = {.lex_state = 6},
[208] = {.lex_state = 6},
[209] = {.lex_state = 6},
[210] = {.lex_state = 6},
[211] = {.lex_state = 6},
[212] = {.lex_state = 6},
[213] = {.lex_state = 6},
[214] = {.lex_state = 27},
[215] = {.lex_state = 6},
[216] = {.lex_state = 6},
[217] = {.lex_state = 6},
[218] = {.lex_state = 27},
[219] = {.lex_state = 6},
[220] = {.lex_state = 6},
[221] = {.lex_state = 27},
[222] = {.lex_state = 6},
[223] = {.lex_state = 6},
[224] = {.lex_state = 6},
[225] = {.lex_state = 27},
[226] = {.lex_state = 6},
[227] = {.lex_state = 27},
[228] = {.lex_state = 6},
[229] = {.lex_state = 6},
[230] = {.lex_state = 6},
[231] = {.lex_state = 6},
[232] = {.lex_state = 6},
[233] = {.lex_state = 6},
[234] = {.lex_state = 6},
[235] = {.lex_state = 6},
[236] = {.lex_state = 6},
[237] = {.lex_state = 6},
[238] = {.lex_state = 6},
[239] = {.lex_state = 6},
[240] = {.lex_state = 27},
[241] = {.lex_state = 6},
[242] = {.lex_state = 6},
[243] = {.lex_state = 27},
[244] = {.lex_state = 27},
[245] = {.lex_state = 27},
[246] = {.lex_state = 6},
[247] = {.lex_state = 3},
[248] = {.lex_state = 5},
[249] = {.lex_state = 5},
[250] = {.lex_state = 5},
[251] = {.lex_state = 3},
[252] = {.lex_state = 5},
[253] = {.lex_state = 27},
[254] = {.lex_state = 3},
[255] = {.lex_state = 3},
[256] = {.lex_state = 5},
[257] = {.lex_state = 5},
[258] = {.lex_state = 3},
[259] = {.lex_state = 3},
[260] = {.lex_state = 5},
[261] = {.lex_state = 3},
[262] = {.lex_state = 5},
[263] = {.lex_state = 3},
[264] = {.lex_state = 3},
[265] = {.lex_state = 5},
[266] = {.lex_state = 5},
[267] = {.lex_state = 3},
[268] = {.lex_state = 3},
[269] = {.lex_state = 3},
[270] = {.lex_state = 3},
[271] = {.lex_state = 4},
[272] = {.lex_state = 4},
[273] = {.lex_state = 6},
[274] = {.lex_state = 6},
[275] = {.lex_state = 6},
[276] = {.lex_state = 6},
[277] = {.lex_state = 6},
[278] = {.lex_state = 6},
[279] = {.lex_state = 6},
[280] = {.lex_state = 6},
[281] = {.lex_state = 6},
[282] = {.lex_state = 4},
[283] = {.lex_state = 4},
[284] = {.lex_state = 1},
[285] = {.lex_state = 6},
[286] = {.lex_state = 4},
[287] = {.lex_state = 4},
[288] = {.lex_state = 4},
[289] = {.lex_state = 1},
[290] = {.lex_state = 1},
[291] = {.lex_state = 1},
[292] = {.lex_state = 1},
[293] = {.lex_state = 1},
[294] = {.lex_state = 1},
[295] = {.lex_state = 1},
[296] = {.lex_state = 1},
[297] = {.lex_state = 6},
[298] = {.lex_state = 27},
[299] = {.lex_state = 6},
[300] = {.lex_state = 6},
[301] = {.lex_state = 27},
[302] = {.lex_state = 1},
[303] = {.lex_state = 1},
[304] = {.lex_state = 1},
[305] = {.lex_state = 1},
[306] = {.lex_state = 1},
[307] = {.lex_state = 1},
[308] = {.lex_state = 1},
[309] = {.lex_state = 1},
[310] = {.lex_state = 1},
[311] = {.lex_state = 1},
[312] = {.lex_state = 6},
[313] = {.lex_state = 6},
[314] = {.lex_state = 6},
[315] = {.lex_state = 1},
[316] = {.lex_state = 6},
[317] = {.lex_state = 1},
[318] = {.lex_state = 1},
[319] = {.lex_state = 6},
[320] = {.lex_state = 6},
[321] = {.lex_state = 1},
[322] = {.lex_state = 1},
[323] = {.lex_state = 6},
[324] = {.lex_state = 6},
[325] = {.lex_state = 1},
[326] = {.lex_state = 1},
[327] = {.lex_state = 1},
[328] = {.lex_state = 1},
[329] = {.lex_state = 1},
[330] = {.lex_state = 1},
[331] = {.lex_state = 1},
[332] = {.lex_state = 1},
[333] = {.lex_state = 1},
[334] = {.lex_state = 1},
[335] = {.lex_state = 1},
[336] = {.lex_state = 6},
[337] = {.lex_state = 1},
[338] = {.lex_state = 1},
[339] = {.lex_state = 6},
[340] = {.lex_state = 1},
[341] = {.lex_state = 1},
[342] = {.lex_state = 6},
[343] = {.lex_state = 1},
[344] = {.lex_state = 1},
[345] = {.lex_state = 1},
[346] = {.lex_state = 27},
[347] = {.lex_state = 27},
[348] = {.lex_state = 27},
[349] = {.lex_state = 27},
[350] = {.lex_state = 27},
[351] = {.lex_state = 27},
[352] = {.lex_state = 27},
[353] = {.lex_state = 1},
[354] = {.lex_state = 27},
[355] = {.lex_state = 6},
[356] = {.lex_state = 6},
[357] = {.lex_state = 0},
[358] = {.lex_state = 27},
[359] = {.lex_state = 27},
[360] = {.lex_state = 0},
[361] = {.lex_state = 0},
[362] = {.lex_state = 0},
[363] = {.lex_state = 0},
[364] = {.lex_state = 0},
[365] = {.lex_state = 1},
[366] = {.lex_state = 1},
[367] = {.lex_state = 0},
[368] = {.lex_state = 1},
[369] = {.lex_state = 1},
[370] = {.lex_state = 1},
[371] = {.lex_state = 1},
[372] = {.lex_state = 0},
[373] = {.lex_state = 0},
[374] = {.lex_state = 0},
[375] = {.lex_state = 1},
[376] = {.lex_state = 0},
[377] = {.lex_state = 0},
[378] = {.lex_state = 0},
[379] = {.lex_state = 27},
[380] = {.lex_state = 27},
[381] = {.lex_state = 1},
[382] = {.lex_state = 1},
[383] = {.lex_state = 0},
[384] = {.lex_state = 1},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[anon_sym_COMMA] = 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_RBRACK] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[anon_sym_DOT_DOT] = 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] = ACTIONS(1),
[anon_sym_LT] = 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_match] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_asyncfor] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_select] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
[anon_sym_insert] = ACTIONS(1),
[anon_sym_into] = ACTIONS(1),
[anon_sym_PIPE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_return] = ACTIONS(1),
[anon_sym_use] = ACTIONS(1),
[anon_sym_any] = ACTIONS(1),
[anon_sym_bool] = ACTIONS(1),
[anon_sym_fn] = ACTIONS(1),
[anon_sym_int] = ACTIONS(1),
[anon_sym_list] = ACTIONS(1),
[anon_sym_map] = ACTIONS(1),
[anon_sym_str] = ACTIONS(1),
[anon_sym_DASH_GT] = ACTIONS(1),
},
[1] = {
[sym_root] = STATE(376),
[sym_block] = STATE(182),
[sym_statement] = STATE(8),
[sym_expression] = STATE(82),
[sym__expression_kind] = STATE(77),
[sym_value] = STATE(77),
[sym_boolean] = STATE(70),
[sym_list] = STATE(70),
[sym_map] = STATE(70),
[sym_index] = STATE(56),
[sym_math] = STATE(77),
[sym_logic] = STATE(77),
[sym_assignment] = STATE(182),
[sym_index_assignment] = STATE(182),
[sym_if_else] = STATE(182),
[sym_if] = STATE(117),
[sym_match] = STATE(182),
[sym_while] = STATE(182),
[sym_for] = STATE(182),
[sym_select] = STATE(182),
[sym_insert] = STATE(182),
[sym_table] = STATE(70),
[sym_return] = STATE(182),
[sym_use] = STATE(182),
[sym_function] = STATE(70),
[sym_function_call] = STATE(77),
[sym_yield] = STATE(77),
[aux_sym_root_repeat1] = STATE(8),
[sym_identifier] = ACTIONS(5),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(7),
[anon_sym_LBRACE] = ACTIONS(9),
[anon_sym_LPAREN] = ACTIONS(11),
[sym_integer] = ACTIONS(13),
[sym_float] = ACTIONS(15),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_if] = ACTIONS(21),
[anon_sym_match] = ACTIONS(23),
[anon_sym_while] = ACTIONS(25),
[anon_sym_for] = ACTIONS(27),
[anon_sym_asyncfor] = ACTIONS(29),
[anon_sym_select] = ACTIONS(31),
[anon_sym_insert] = ACTIONS(33),
[anon_sym_PIPE] = ACTIONS(35),
[anon_sym_table] = ACTIONS(37),
[anon_sym_return] = ACTIONS(39),
[anon_sym_use] = ACTIONS(41),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 29,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(43), 1,
sym_identifier,
ACTIONS(45), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
STATE(337), 1,
aux_sym_map_repeat1,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[110] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(49), 1,
sym_identifier,
ACTIONS(52), 1,
anon_sym_async,
ACTIONS(55), 1,
anon_sym_LBRACE,
ACTIONS(58), 1,
anon_sym_LPAREN,
ACTIONS(61), 1,
sym_integer,
ACTIONS(70), 1,
anon_sym_LBRACK,
ACTIONS(73), 1,
anon_sym_if,
ACTIONS(76), 1,
anon_sym_match,
ACTIONS(79), 1,
anon_sym_while,
ACTIONS(82), 1,
anon_sym_for,
ACTIONS(85), 1,
anon_sym_asyncfor,
ACTIONS(88), 1,
anon_sym_select,
ACTIONS(91), 1,
anon_sym_insert,
ACTIONS(94), 1,
anon_sym_PIPE,
ACTIONS(97), 1,
anon_sym_table,
ACTIONS(100), 1,
anon_sym_return,
ACTIONS(103), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(47), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(64), 2,
sym_float,
sym_string,
ACTIONS(67), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[218] = 29,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(43), 1,
sym_identifier,
ACTIONS(106), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
STATE(330), 1,
aux_sym_map_repeat1,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[328] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(108), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[435] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(110), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[542] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(112), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[649] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(114), 1,
ts_builtin_sym_end,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[756] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(116), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[863] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(118), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[970] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(120), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1077] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(122), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1184] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(124), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1291] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(126), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1398] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(128), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1505] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(130), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1612] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(132), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1719] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(134), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1826] = 28,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
ACTIONS(136), 1,
anon_sym_RBRACE,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[1933] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(6), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2037] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(11), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2141] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2245] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(19), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2349] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2453] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(18), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2557] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2661] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2765] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(15), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2869] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(7), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[2973] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(5), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3077] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3181] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(16), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3285] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(82), 1,
sym_expression,
STATE(117), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(14), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(182), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3389] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
sym_identifier,
ACTIONS(140), 1,
anon_sym_async,
ACTIONS(142), 1,
anon_sym_LBRACE,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_if,
ACTIONS(156), 1,
anon_sym_match,
ACTIONS(158), 1,
anon_sym_while,
ACTIONS(160), 1,
anon_sym_for,
ACTIONS(162), 1,
anon_sym_asyncfor,
ACTIONS(164), 1,
anon_sym_select,
ACTIONS(166), 1,
anon_sym_insert,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(172), 1,
anon_sym_return,
ACTIONS(174), 1,
anon_sym_use,
STATE(247), 1,
sym_index,
STATE(258), 1,
sym_expression,
STATE(283), 1,
sym_if,
STATE(328), 1,
sym_statement,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(303), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3492] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
sym_identifier,
ACTIONS(140), 1,
anon_sym_async,
ACTIONS(142), 1,
anon_sym_LBRACE,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_if,
ACTIONS(156), 1,
anon_sym_match,
ACTIONS(158), 1,
anon_sym_while,
ACTIONS(160), 1,
anon_sym_for,
ACTIONS(162), 1,
anon_sym_asyncfor,
ACTIONS(164), 1,
anon_sym_select,
ACTIONS(166), 1,
anon_sym_insert,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(172), 1,
anon_sym_return,
ACTIONS(174), 1,
anon_sym_use,
STATE(247), 1,
sym_index,
STATE(258), 1,
sym_expression,
STATE(283), 1,
sym_if,
STATE(328), 1,
sym_statement,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(303), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3595] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(83), 1,
sym_expression,
STATE(117), 1,
sym_if,
STATE(243), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(195), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3698] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
sym_identifier,
ACTIONS(140), 1,
anon_sym_async,
ACTIONS(142), 1,
anon_sym_LBRACE,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_if,
ACTIONS(156), 1,
anon_sym_match,
ACTIONS(158), 1,
anon_sym_while,
ACTIONS(160), 1,
anon_sym_for,
ACTIONS(162), 1,
anon_sym_asyncfor,
ACTIONS(164), 1,
anon_sym_select,
ACTIONS(166), 1,
anon_sym_insert,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(172), 1,
anon_sym_return,
ACTIONS(174), 1,
anon_sym_use,
STATE(247), 1,
sym_index,
STATE(251), 1,
sym_expression,
STATE(283), 1,
sym_if,
STATE(311), 1,
sym_statement,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(302), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3801] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(83), 1,
sym_expression,
STATE(117), 1,
sym_if,
STATE(214), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(195), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[3904] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_while,
ACTIONS(27), 1,
anon_sym_for,
ACTIONS(29), 1,
anon_sym_asyncfor,
ACTIONS(31), 1,
anon_sym_select,
ACTIONS(33), 1,
anon_sym_insert,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(39), 1,
anon_sym_return,
ACTIONS(41), 1,
anon_sym_use,
STATE(56), 1,
sym_index,
STATE(83), 1,
sym_expression,
STATE(117), 1,
sym_if,
STATE(227), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(195), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[4007] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
sym_identifier,
ACTIONS(140), 1,
anon_sym_async,
ACTIONS(142), 1,
anon_sym_LBRACE,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_if,
ACTIONS(156), 1,
anon_sym_match,
ACTIONS(158), 1,
anon_sym_while,
ACTIONS(160), 1,
anon_sym_for,
ACTIONS(162), 1,
anon_sym_asyncfor,
ACTIONS(164), 1,
anon_sym_select,
ACTIONS(166), 1,
anon_sym_insert,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(172), 1,
anon_sym_return,
ACTIONS(174), 1,
anon_sym_use,
STATE(247), 1,
sym_index,
STATE(251), 1,
sym_expression,
STATE(283), 1,
sym_if,
STATE(309), 1,
sym_statement,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(302), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[4110] = 27,
ACTIONS(3), 1,
sym__comment,
ACTIONS(138), 1,
sym_identifier,
ACTIONS(140), 1,
anon_sym_async,
ACTIONS(142), 1,
anon_sym_LBRACE,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(154), 1,
anon_sym_if,
ACTIONS(156), 1,
anon_sym_match,
ACTIONS(158), 1,
anon_sym_while,
ACTIONS(160), 1,
anon_sym_for,
ACTIONS(162), 1,
anon_sym_asyncfor,
ACTIONS(164), 1,
anon_sym_select,
ACTIONS(166), 1,
anon_sym_insert,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(172), 1,
anon_sym_return,
ACTIONS(174), 1,
anon_sym_use,
STATE(247), 1,
sym_index,
STATE(251), 1,
sym_expression,
STATE(283), 1,
sym_if,
STATE(306), 1,
sym_statement,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(302), 11,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_select,
sym_insert,
sym_return,
sym_use,
[4213] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(180), 1,
anon_sym_COLON,
ACTIONS(190), 1,
anon_sym_DASH_GT,
STATE(186), 1,
sym_math_operator,
STATE(187), 1,
sym_logic_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(176), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(178), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[4282] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(180), 1,
anon_sym_COLON,
STATE(186), 1,
sym_math_operator,
STATE(187), 1,
sym_logic_operator,
ACTIONS(194), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(192), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4341] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(186), 1,
sym_math_operator,
STATE(187), 1,
sym_logic_operator,
ACTIONS(198), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(196), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4398] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(200), 1,
anon_sym_DOT_DOT,
STATE(186), 1,
sym_math_operator,
STATE(187), 1,
sym_logic_operator,
ACTIONS(198), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(196), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4457] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(180), 1,
anon_sym_COLON,
ACTIONS(190), 1,
anon_sym_DASH_GT,
STATE(186), 1,
sym_math_operator,
STATE(187), 1,
sym_logic_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(202), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(204), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[4526] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(186), 1,
sym_math_operator,
STATE(187), 1,
sym_logic_operator,
ACTIONS(208), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(206), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4583] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(176), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(178), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[4651] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 1,
anon_sym_EQ,
ACTIONS(218), 1,
anon_sym_LT,
STATE(36), 1,
sym_assignment_operator,
STATE(298), 1,
sym_type,
ACTIONS(220), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(214), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(212), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4713] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(208), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(206), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4769] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(202), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
ACTIONS(204), 16,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[4837] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(210), 1,
anon_sym_COLON,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(194), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(192), 21,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
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_asyncfor,
anon_sym_DASH_GT,
[4895] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(224), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(222), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4946] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(228), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(226), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[4997] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(236), 1,
anon_sym_RPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(252), 1,
anon_sym_DASH_GT,
STATE(114), 1,
sym_expression,
STATE(152), 1,
aux_sym__expression_list,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5088] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 1,
anon_sym_EQ,
STATE(39), 1,
sym_assignment_operator,
ACTIONS(220), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(214), 19,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(212), 20,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5145] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(256), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(254), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5196] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(260), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(258), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5247] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(264), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(262), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5298] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(268), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(266), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5349] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(270), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(130), 1,
aux_sym__expression_list,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5440] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(272), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(138), 1,
aux_sym__expression_list,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5531] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(274), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5582] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(280), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(278), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5633] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(282), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5684] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(286), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5735] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(290), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5786] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(294), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5837] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(298), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(166), 1,
aux_sym__expression_list,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[5928] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(302), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(300), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[5979] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(306), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(304), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6030] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(308), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6081] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(314), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(312), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6132] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(316), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(137), 1,
aux_sym__expression_list,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6223] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(218), 1,
anon_sym_LT,
ACTIONS(318), 1,
anon_sym_EQ,
STATE(36), 1,
sym_assignment_operator,
STATE(298), 1,
sym_type,
ACTIONS(220), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(214), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(212), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6284] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(248), 1,
anon_sym_PIPE,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(320), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(160), 1,
aux_sym__expression_list,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6375] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(324), 20,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
ACTIONS(322), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_asyncfor,
anon_sym_DASH_GT,
[6426] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
ACTIONS(330), 1,
anon_sym_LBRACE,
STATE(199), 1,
sym_block,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(326), 8,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
ACTIONS(328), 14,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[6498] = 22,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(336), 1,
anon_sym_PIPE,
ACTIONS(338), 1,
anon_sym_table,
STATE(118), 1,
aux_sym_match_repeat1,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
STATE(271), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6586] = 22,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(336), 1,
anon_sym_PIPE,
ACTIONS(338), 1,
anon_sym_table,
STATE(86), 1,
aux_sym_match_repeat1,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
STATE(272), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(186), 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,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6674] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(340), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
ACTIONS(342), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[6739] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
ACTIONS(348), 1,
anon_sym_SEMI,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(344), 8,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
ACTIONS(346), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[6806] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(344), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
ACTIONS(346), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[6871] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(190), 1,
anon_sym_DASH_GT,
ACTIONS(210), 1,
anon_sym_COLON,
STATE(230), 1,
sym_math_operator,
STATE(234), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(350), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
ACTIONS(352), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[6936] = 16,
ACTIONS(3), 1,
sym__comment,
ACTIONS(356), 1,
sym_identifier,
ACTIONS(361), 1,
anon_sym_LBRACE,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(367), 1,
sym_integer,
ACTIONS(376), 1,
anon_sym_LBRACK,
ACTIONS(379), 1,
anon_sym_PIPE,
ACTIONS(382), 1,
anon_sym_table,
STATE(85), 1,
aux_sym_match_repeat1,
STATE(272), 1,
sym_expression,
ACTIONS(370), 2,
sym_float,
sym_string,
ACTIONS(373), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(354), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(359), 9,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_return,
anon_sym_use,
[7008] = 16,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(85), 1,
aux_sym_match_repeat1,
STATE(272), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(385), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
ACTIONS(387), 9,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_return,
anon_sym_use,
[7080] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(294), 23,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7120] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(215), 1,
sym_math_operator,
STATE(216), 1,
sym_logic_operator,
ACTIONS(208), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(206), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7164] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(391), 1,
anon_sym_COLON,
STATE(215), 1,
sym_math_operator,
STATE(216), 1,
sym_logic_operator,
ACTIONS(194), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(192), 20,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7210] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(391), 1,
anon_sym_COLON,
STATE(215), 1,
sym_math_operator,
STATE(216), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(204), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(202), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
[7266] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(215), 1,
sym_math_operator,
STATE(216), 1,
sym_logic_operator,
ACTIONS(198), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(196), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7310] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(391), 1,
anon_sym_COLON,
STATE(215), 1,
sym_math_operator,
STATE(216), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(178), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(176), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
[7366] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(393), 1,
anon_sym_DOT_DOT,
STATE(215), 1,
sym_math_operator,
STATE(216), 1,
sym_logic_operator,
ACTIONS(198), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(196), 20,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7412] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(260), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(258), 23,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7452] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(252), 1,
anon_sym_DASH_GT,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(178), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(176), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[7507] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(208), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(206), 20,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7550] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(252), 1,
anon_sym_DASH_GT,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(204), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(202), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[7605] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(246), 1,
anon_sym_COLON,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(194), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(192), 19,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7650] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(302), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(300), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7688] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(274), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7726] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(228), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(226), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7764] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(224), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(222), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7802] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(306), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(304), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7840] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(264), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(262), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7878] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(280), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(278), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7916] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(282), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7954] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(290), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[7992] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(399), 1,
anon_sym_COMMA,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(395), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(397), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[8048] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(314), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(312), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8086] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(286), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8124] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(324), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(322), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8162] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(308), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8200] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(256), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(254), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8238] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(246), 1,
anon_sym_COLON,
ACTIONS(252), 1,
anon_sym_DASH_GT,
ACTIONS(405), 1,
anon_sym_COMMA,
STATE(178), 1,
sym_logic_operator,
STATE(179), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(401), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(403), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
[8294] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(268), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(266), 21,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8332] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(411), 1,
anon_sym_elseif,
ACTIONS(413), 1,
anon_sym_else,
STATE(172), 1,
sym_else,
STATE(119), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(407), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(409), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[8377] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(411), 1,
anon_sym_elseif,
ACTIONS(413), 1,
anon_sym_else,
STATE(245), 1,
sym_else,
STATE(116), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(415), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(417), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[8422] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(120), 1,
aux_sym_match_repeat1,
STATE(271), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(385), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8482] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(423), 1,
anon_sym_elseif,
STATE(119), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(419), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(421), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[8522] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(356), 1,
sym_identifier,
ACTIONS(361), 1,
anon_sym_LBRACE,
ACTIONS(364), 1,
anon_sym_LPAREN,
ACTIONS(367), 1,
sym_integer,
ACTIONS(376), 1,
anon_sym_LBRACK,
ACTIONS(379), 1,
anon_sym_PIPE,
ACTIONS(382), 1,
anon_sym_table,
STATE(120), 1,
aux_sym_match_repeat1,
STATE(271), 1,
sym_expression,
ACTIONS(370), 2,
sym_float,
sym_string,
ACTIONS(373), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(354), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8582] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(194), 1,
sym_math_operator,
STATE(232), 1,
sym_logic_operator,
ACTIONS(198), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(196), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[8621] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(426), 1,
anon_sym_RPAREN,
ACTIONS(324), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(322), 17,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8658] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(428), 1,
anon_sym_RPAREN,
ACTIONS(324), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(322), 17,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8695] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(430), 1,
anon_sym_COLON,
STATE(194), 1,
sym_math_operator,
STATE(232), 1,
sym_logic_operator,
ACTIONS(194), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(192), 17,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[8736] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(430), 1,
anon_sym_COLON,
ACTIONS(432), 1,
anon_sym_DASH_GT,
STATE(194), 1,
sym_math_operator,
STATE(232), 1,
sym_logic_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(178), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(176), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[8787] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(434), 1,
anon_sym_RPAREN,
ACTIONS(324), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(322), 17,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[8824] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(436), 1,
anon_sym_DOT_DOT,
STATE(194), 1,
sym_math_operator,
STATE(232), 1,
sym_logic_operator,
ACTIONS(198), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(196), 17,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[8865] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(430), 1,
anon_sym_COLON,
ACTIONS(432), 1,
anon_sym_DASH_GT,
STATE(194), 1,
sym_math_operator,
STATE(232), 1,
sym_logic_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(204), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(202), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[8916] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(194), 1,
sym_math_operator,
STATE(232), 1,
sym_logic_operator,
ACTIONS(208), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[8955] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(438), 1,
anon_sym_RPAREN,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9013] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(442), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(141), 1,
aux_sym_list_repeat1,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9071] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(306), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(304), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9105] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(302), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(300), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9139] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(224), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(222), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9173] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(280), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(278), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9207] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(284), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(282), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9241] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(444), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9299] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(446), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9357] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(208), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 17,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[9395] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(314), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(312), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9429] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(448), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(146), 1,
aux_sym_list_repeat1,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9487] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(288), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(286), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9521] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(292), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(290), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9555] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(228), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(226), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9589] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(450), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(452), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[9623] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(454), 1,
sym_identifier,
ACTIONS(457), 1,
anon_sym_LBRACE,
ACTIONS(460), 1,
anon_sym_LPAREN,
ACTIONS(463), 1,
sym_integer,
ACTIONS(472), 1,
anon_sym_LBRACK,
ACTIONS(475), 1,
anon_sym_RBRACK,
ACTIONS(477), 1,
anon_sym_PIPE,
ACTIONS(480), 1,
anon_sym_table,
STATE(108), 1,
sym_expression,
STATE(146), 1,
aux_sym_list_repeat1,
ACTIONS(466), 2,
sym_float,
sym_string,
ACTIONS(469), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9681] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(264), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(262), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9715] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(256), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(254), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9749] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(483), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(146), 1,
aux_sym_list_repeat1,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9807] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(324), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(322), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9841] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(276), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(274), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[9875] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(485), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9933] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(258), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(260), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[9967] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(310), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(308), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[10001] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(487), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(159), 1,
aux_sym_list_repeat1,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10059] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(268), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(266), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[10093] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(489), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(149), 1,
aux_sym_list_repeat1,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10151] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(491), 1,
sym_identifier,
ACTIONS(494), 1,
anon_sym_LBRACE,
ACTIONS(497), 1,
anon_sym_LPAREN,
ACTIONS(500), 1,
anon_sym_RPAREN,
ACTIONS(502), 1,
sym_integer,
ACTIONS(511), 1,
anon_sym_LBRACK,
ACTIONS(514), 1,
anon_sym_PIPE,
ACTIONS(517), 1,
anon_sym_table,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(505), 2,
sym_float,
sym_string,
ACTIONS(508), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10209] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(520), 1,
anon_sym_RBRACK,
STATE(108), 1,
sym_expression,
STATE(146), 1,
aux_sym_list_repeat1,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10267] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(522), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10325] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(524), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(526), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[10359] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(178), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(176), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(186), 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,
[10409] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(294), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(296), 15,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[10443] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(528), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(194), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(192), 16,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
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_DASH_GT,
[10483] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(182), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(204), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(186), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(202), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[10533] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(530), 1,
anon_sym_RPAREN,
STATE(114), 1,
sym_expression,
STATE(158), 1,
aux_sym__expression_list,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10591] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(260), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(258), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[10624] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(294), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_DASH_GT,
[10657] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(260), 6,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_else,
ACTIONS(258), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[10690] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 6,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_else,
ACTIONS(294), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[10723] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(532), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(534), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[10755] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(538), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[10787] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(188), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10839] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(255), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10891] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(259), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10943] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(79), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10995] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(267), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11047] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(97), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11099] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(98), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11151] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(540), 1,
anon_sym_table,
STATE(93), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11203] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(389), 1,
anon_sym_PIPE,
ACTIONS(542), 1,
anon_sym_table,
STATE(249), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11255] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(348), 1,
anon_sym_SEMI,
ACTIONS(344), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(346), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[11289] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
ACTIONS(548), 1,
anon_sym_table,
STATE(42), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11341] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(139), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11393] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(95), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11445] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
ACTIONS(548), 1,
anon_sym_table,
STATE(43), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11497] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
ACTIONS(548), 1,
anon_sym_table,
STATE(46), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11549] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(140), 1,
anon_sym_async,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(328), 1,
sym_identifier,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
ACTIONS(550), 1,
anon_sym_LBRACE,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
STATE(304), 1,
sym_block,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(326), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[11603] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(540), 1,
anon_sym_table,
STATE(91), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11655] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(165), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11707] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(96), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11759] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(81), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11811] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(552), 1,
anon_sym_table,
STATE(125), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11863] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(552), 1,
anon_sym_table,
STATE(124), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11915] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(344), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(346), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[11947] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(254), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[11999] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 1,
anon_sym_EQ,
ACTIONS(218), 1,
anon_sym_LT,
STATE(37), 1,
sym_assignment_operator,
STATE(301), 1,
sym_type,
ACTIONS(220), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(214), 3,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
ACTIONS(212), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[12041] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(164), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12093] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(554), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(556), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[12125] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(558), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(560), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[12157] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(562), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(564), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[12189] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(263), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12241] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(566), 1,
sym_identifier,
STATE(55), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(126), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12293] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(50), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12345] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(552), 1,
anon_sym_table,
STATE(127), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12397] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(264), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12449] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(260), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12501] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(389), 1,
anon_sym_PIPE,
ACTIONS(542), 1,
anon_sym_table,
STATE(248), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12553] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(265), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12605] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(266), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12657] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(69), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12709] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(170), 1,
anon_sym_table,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
STATE(162), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12761] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(540), 1,
anon_sym_table,
STATE(92), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12813] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(568), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(570), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[12845] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(540), 1,
anon_sym_table,
STATE(89), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12897] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(540), 1,
anon_sym_table,
STATE(90), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[12949] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(48), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13001] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(572), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(574), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[13033] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(269), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13085] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
ACTIONS(548), 1,
anon_sym_table,
STATE(44), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13137] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(258), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(260), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[13169] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(576), 1,
sym_identifier,
STATE(76), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(122), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13221] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(552), 1,
anon_sym_table,
STATE(121), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13273] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(262), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13325] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(578), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(580), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[13357] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
ACTIONS(548), 1,
anon_sym_table,
STATE(45), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13409] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(582), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(584), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[13441] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(62), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13493] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(389), 1,
anon_sym_PIPE,
ACTIONS(542), 1,
anon_sym_table,
STATE(257), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13545] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(52), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13597] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(389), 1,
anon_sym_PIPE,
ACTIONS(542), 1,
anon_sym_table,
STATE(256), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13649] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(168), 1,
anon_sym_PIPE,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(552), 1,
anon_sym_table,
STATE(128), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13701] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(389), 1,
anon_sym_PIPE,
ACTIONS(542), 1,
anon_sym_table,
STATE(252), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13753] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(51), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13805] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(84), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13857] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(35), 1,
anon_sym_PIPE,
ACTIONS(37), 1,
anon_sym_table,
ACTIONS(544), 1,
sym_identifier,
ACTIONS(546), 1,
anon_sym_LBRACE,
STATE(78), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(70), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(77), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13909] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
ACTIONS(586), 1,
sym_identifier,
STATE(74), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(123), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[13961] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(270), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14013] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(261), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14065] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(588), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(590), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[14097] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(80), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14149] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(230), 1,
sym_identifier,
ACTIONS(232), 1,
anon_sym_LBRACE,
ACTIONS(234), 1,
anon_sym_LPAREN,
ACTIONS(238), 1,
sym_integer,
ACTIONS(244), 1,
anon_sym_LBRACK,
ACTIONS(250), 1,
anon_sym_table,
ACTIONS(440), 1,
anon_sym_PIPE,
STATE(61), 1,
sym_expression,
ACTIONS(240), 2,
sym_float,
sym_string,
ACTIONS(242), 2,
anon_sym_true,
anon_sym_false,
STATE(99), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14201] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(592), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(594), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[14233] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(294), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(296), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[14265] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(407), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(409), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[14297] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(144), 1,
anon_sym_LPAREN,
ACTIONS(146), 1,
sym_integer,
ACTIONS(152), 1,
anon_sym_LBRACK,
ACTIONS(332), 1,
sym_identifier,
ACTIONS(334), 1,
anon_sym_LBRACE,
ACTIONS(338), 1,
anon_sym_table,
ACTIONS(389), 1,
anon_sym_PIPE,
STATE(268), 1,
sym_expression,
ACTIONS(148), 2,
sym_float,
sym_string,
ACTIONS(150), 2,
anon_sym_true,
anon_sym_false,
STATE(133), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(150), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[14349] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 1,
anon_sym_EQ,
STATE(40), 1,
sym_assignment_operator,
ACTIONS(220), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(214), 4,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(212), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_DASH_GT,
[14386] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(596), 1,
anon_sym_DOT_DOT,
STATE(231), 1,
sym_math_operator,
STATE(233), 1,
sym_logic_operator,
ACTIONS(198), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(196), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[14421] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(231), 1,
sym_math_operator,
STATE(233), 1,
sym_logic_operator,
ACTIONS(198), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(196), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[14454] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(231), 1,
sym_math_operator,
STATE(233), 1,
sym_logic_operator,
ACTIONS(208), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 16,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[14487] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(344), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(186), 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,
[14530] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(598), 1,
anon_sym_COLON,
STATE(231), 1,
sym_math_operator,
STATE(233), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(202), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(186), 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,
[14573] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(600), 14,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
anon_sym_return,
anon_sym_use,
[14602] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(340), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(186), 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,
[14645] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(350), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(186), 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,
[14688] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 1,
anon_sym_COLON,
STATE(231), 1,
sym_math_operator,
STATE(233), 1,
sym_logic_operator,
ACTIONS(194), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(192), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[14723] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(598), 1,
anon_sym_COLON,
STATE(231), 1,
sym_math_operator,
STATE(233), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(176), 4,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[14766] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(528), 1,
anon_sym_COLON,
ACTIONS(604), 1,
anon_sym_SEMI,
STATE(190), 1,
sym_logic_operator,
STATE(198), 1,
sym_math_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(344), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[14811] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(606), 1,
anon_sym_async,
ACTIONS(608), 1,
anon_sym_LBRACE,
ACTIONS(610), 1,
anon_sym_COLON,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
STATE(287), 1,
sym_block,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[14857] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(176), 3,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_EQ_GT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[14899] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(330), 1,
anon_sym_LBRACE,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(612), 1,
anon_sym_async,
STATE(200), 1,
sym_block,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[14945] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(208), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(206), 15,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[14977] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(606), 1,
anon_sym_async,
ACTIONS(608), 1,
anon_sym_LBRACE,
ACTIONS(610), 1,
anon_sym_COLON,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
STATE(288), 1,
sym_block,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15023] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(614), 1,
anon_sym_async,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
STATE(305), 1,
sym_block,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15069] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(610), 1,
anon_sym_COLON,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(194), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(192), 14,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_DASH_GT,
[15103] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(202), 3,
anon_sym_async,
anon_sym_LBRACE,
anon_sym_EQ_GT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15145] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(614), 1,
anon_sym_async,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
STATE(310), 1,
sym_block,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15191] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(330), 1,
anon_sym_LBRACE,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(612), 1,
anon_sym_async,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
STATE(240), 1,
sym_block,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15237] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(616), 1,
anon_sym_async,
ACTIONS(618), 1,
anon_sym_LBRACE,
STATE(145), 1,
sym_block,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15283] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(616), 1,
anon_sym_async,
ACTIONS(618), 1,
anon_sym_LBRACE,
STATE(161), 1,
sym_block,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15329] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(620), 1,
anon_sym_EQ_GT,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15369] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(182), 1,
anon_sym_DASH,
ACTIONS(432), 1,
anon_sym_DASH_GT,
ACTIONS(610), 1,
anon_sym_COLON,
ACTIONS(622), 1,
anon_sym_EQ_GT,
STATE(209), 1,
sym_math_operator,
STATE(210), 1,
sym_logic_operator,
ACTIONS(188), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(184), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(186), 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,
[15409] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(564), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(562), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15431] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(296), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(294), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15453] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(260), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(258), 9,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15475] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(624), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
anon_sym_table,
ACTIONS(626), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15495] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(628), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(500), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15515] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(630), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
anon_sym_table,
ACTIONS(632), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15535] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(634), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(475), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_PIPE,
[15555] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(636), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(638), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15574] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(640), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(642), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PIPE,
[15593] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(409), 1,
sym_identifier,
ACTIONS(644), 1,
anon_sym_elseif,
ACTIONS(646), 1,
anon_sym_else,
STATE(307), 1,
sym_else,
STATE(286), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(407), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[15618] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(417), 1,
sym_identifier,
ACTIONS(644), 1,
anon_sym_elseif,
ACTIONS(646), 1,
anon_sym_else,
STATE(315), 1,
sym_else,
STATE(282), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(415), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[15643] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(648), 8,
anon_sym_table,
anon_sym_any,
anon_sym_bool,
anon_sym_fn,
anon_sym_int,
anon_sym_list,
anon_sym_map,
anon_sym_str,
[15657] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(650), 2,
anon_sym_async,
sym_identifier,
ACTIONS(652), 6,
anon_sym_LBRACE,
anon_sym_COMMA,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_PIPE,
[15673] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(654), 1,
anon_sym_elseif,
ACTIONS(421), 2,
sym_identifier,
anon_sym_else,
STATE(286), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(419), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[15693] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(452), 2,
sym_identifier,
anon_sym_else,
ACTIONS(450), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[15707] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 2,
sym_identifier,
anon_sym_else,
ACTIONS(524), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[15721] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(657), 1,
anon_sym_async,
ACTIONS(659), 1,
anon_sym_LBRACE,
ACTIONS(661), 1,
anon_sym_LT,
STATE(151), 1,
sym_block,
STATE(343), 1,
sym_type,
[15740] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(661), 1,
anon_sym_LT,
ACTIONS(663), 1,
anon_sym_async,
ACTIONS(665), 1,
anon_sym_LBRACE,
STATE(59), 1,
sym_block,
STATE(335), 1,
sym_type,
[15759] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(614), 1,
anon_sym_async,
ACTIONS(661), 1,
anon_sym_LT,
STATE(100), 1,
sym_block,
STATE(333), 1,
sym_type,
[15778] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(657), 1,
anon_sym_async,
ACTIONS(659), 1,
anon_sym_LBRACE,
ACTIONS(661), 1,
anon_sym_LT,
STATE(147), 1,
sym_block,
STATE(344), 1,
sym_type,
[15797] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 1,
anon_sym_async,
ACTIONS(608), 1,
anon_sym_LBRACE,
ACTIONS(661), 1,
anon_sym_LT,
STATE(151), 1,
sym_block,
STATE(345), 1,
sym_type,
[15816] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(614), 1,
anon_sym_async,
ACTIONS(661), 1,
anon_sym_LT,
STATE(104), 1,
sym_block,
STATE(321), 1,
sym_type,
[15835] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(661), 1,
anon_sym_LT,
ACTIONS(663), 1,
anon_sym_async,
ACTIONS(665), 1,
anon_sym_LBRACE,
STATE(63), 1,
sym_block,
STATE(331), 1,
sym_type,
[15854] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 1,
anon_sym_async,
ACTIONS(608), 1,
anon_sym_LBRACE,
ACTIONS(661), 1,
anon_sym_LT,
STATE(147), 1,
sym_block,
STATE(322), 1,
sym_type,
[15873] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(667), 1,
sym_identifier,
ACTIONS(670), 1,
anon_sym_PIPE,
STATE(297), 2,
sym_parameter,
aux_sym_function_repeat1,
[15887] = 3,
ACTIONS(3), 1,
sym__comment,
STATE(38), 1,
sym_assignment_operator,
ACTIONS(220), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15899] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(674), 1,
anon_sym_PIPE,
STATE(319), 2,
sym_parameter,
aux_sym_function_repeat1,
[15913] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_PIPE,
STATE(320), 2,
sym_parameter,
aux_sym_function_repeat1,
[15927] = 3,
ACTIONS(3), 1,
sym__comment,
STATE(41), 1,
sym_assignment_operator,
ACTIONS(220), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[15939] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(344), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[15949] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(604), 1,
anon_sym_SEMI,
ACTIONS(344), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
[15961] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(554), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[15971] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(558), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[15981] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(568), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[15991] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16001] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(532), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16011] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(582), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16021] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(588), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16031] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(592), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16041] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(678), 1,
anon_sym_PIPE,
STATE(297), 2,
sym_parameter,
aux_sym_function_repeat1,
[16055] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(680), 1,
anon_sym_PIPE,
STATE(312), 2,
sym_parameter,
aux_sym_function_repeat1,
[16069] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(682), 1,
anon_sym_PIPE,
STATE(316), 2,
sym_parameter,
aux_sym_function_repeat1,
[16083] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(407), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16093] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(684), 1,
anon_sym_PIPE,
STATE(297), 2,
sym_parameter,
aux_sym_function_repeat1,
[16107] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(578), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16117] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(572), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[16127] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_PIPE,
STATE(297), 2,
sym_parameter,
aux_sym_function_repeat1,
[16141] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(672), 1,
sym_identifier,
ACTIONS(688), 1,
anon_sym_PIPE,
STATE(297), 2,
sym_parameter,
aux_sym_function_repeat1,
[16155] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(614), 1,
anon_sym_async,
STATE(102), 1,
sym_block,
[16168] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 1,
anon_sym_async,
ACTIONS(608), 1,
anon_sym_LBRACE,
STATE(134), 1,
sym_block,
[16181] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(690), 1,
sym_identifier,
ACTIONS(693), 1,
anon_sym_PIPE,
STATE(323), 1,
aux_sym_identifier_list_repeat1,
[16194] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(695), 1,
sym_identifier,
ACTIONS(697), 1,
anon_sym_PIPE,
STATE(336), 1,
aux_sym_identifier_list_repeat1,
[16207] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(330), 1,
anon_sym_LBRACE,
ACTIONS(612), 1,
anon_sym_async,
STATE(201), 1,
sym_block,
[16220] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(614), 1,
anon_sym_async,
STATE(308), 1,
sym_block,
[16233] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(699), 1,
sym_identifier,
ACTIONS(701), 1,
anon_sym_RBRACE,
STATE(340), 1,
aux_sym_map_repeat1,
[16246] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(705), 1,
anon_sym_COMMA,
ACTIONS(703), 2,
anon_sym_RBRACE,
sym_identifier,
[16257] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(707), 1,
anon_sym_async,
ACTIONS(709), 1,
anon_sym_LBRACE,
STATE(273), 1,
sym_block,
[16270] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(699), 1,
sym_identifier,
ACTIONS(711), 1,
anon_sym_RBRACE,
STATE(340), 1,
aux_sym_map_repeat1,
[16283] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 1,
anon_sym_async,
ACTIONS(665), 1,
anon_sym_LBRACE,
STATE(59), 1,
sym_block,
[16296] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(45), 1,
anon_sym_RBRACE,
ACTIONS(699), 1,
sym_identifier,
STATE(337), 1,
aux_sym_map_repeat1,
[16309] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(550), 1,
anon_sym_LBRACE,
ACTIONS(614), 1,
anon_sym_async,
STATE(104), 1,
sym_block,
[16322] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(699), 1,
sym_identifier,
ACTIONS(713), 1,
anon_sym_RBRACE,
STATE(327), 1,
aux_sym_map_repeat1,
[16335] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 1,
anon_sym_async,
ACTIONS(665), 1,
anon_sym_LBRACE,
STATE(53), 1,
sym_block,
[16348] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(695), 1,
sym_identifier,
ACTIONS(715), 1,
anon_sym_PIPE,
STATE(323), 1,
aux_sym_identifier_list_repeat1,
[16361] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(699), 1,
sym_identifier,
ACTIONS(717), 1,
anon_sym_RBRACE,
STATE(340), 1,
aux_sym_map_repeat1,
[16374] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(106), 1,
anon_sym_RBRACE,
ACTIONS(699), 1,
sym_identifier,
STATE(330), 1,
aux_sym_map_repeat1,
[16387] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(721), 1,
anon_sym_COMMA,
ACTIONS(719), 2,
sym_identifier,
anon_sym_PIPE,
[16398] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(723), 1,
sym_identifier,
ACTIONS(726), 1,
anon_sym_RBRACE,
STATE(340), 1,
aux_sym_map_repeat1,
[16411] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(330), 1,
anon_sym_LBRACE,
ACTIONS(612), 1,
anon_sym_async,
STATE(171), 1,
sym_block,
[16424] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(730), 1,
anon_sym_COMMA,
ACTIONS(728), 2,
sym_identifier,
anon_sym_PIPE,
[16435] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(657), 1,
anon_sym_async,
ACTIONS(659), 1,
anon_sym_LBRACE,
STATE(147), 1,
sym_block,
[16448] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(657), 1,
anon_sym_async,
ACTIONS(659), 1,
anon_sym_LBRACE,
STATE(134), 1,
sym_block,
[16461] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 1,
anon_sym_async,
ACTIONS(608), 1,
anon_sym_LBRACE,
STATE(147), 1,
sym_block,
[16474] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(207), 1,
sym_identifier_list,
[16484] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(185), 1,
sym_identifier_list,
[16494] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(183), 1,
sym_identifier_list,
[16504] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(369), 1,
sym_identifier_list,
[16514] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(193), 1,
sym_identifier_list,
[16524] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(382), 1,
sym_identifier_list,
[16534] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(217), 1,
sym_identifier_list,
[16544] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(734), 2,
anon_sym_RBRACE,
sym_identifier,
[16552] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(212), 1,
sym_identifier_list,
[16562] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(736), 2,
sym_identifier,
anon_sym_PIPE,
[16570] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(693), 2,
sym_identifier,
anon_sym_PIPE,
[16578] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(661), 1,
anon_sym_LT,
STATE(342), 1,
sym_type,
[16588] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(213), 1,
sym_identifier_list,
[16598] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(732), 1,
anon_sym_PIPE,
STATE(229), 1,
sym_identifier_list,
[16608] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(738), 1,
sym_string,
[16615] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(740), 1,
anon_sym_LBRACE,
[16622] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(742), 1,
anon_sym_LBRACE,
[16629] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(744), 1,
anon_sym_LBRACE,
[16636] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(746), 1,
anon_sym_LBRACE,
[16643] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(748), 1,
sym_identifier,
[16650] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(750), 1,
anon_sym_in,
[16657] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(752), 1,
anon_sym_LPAREN,
[16664] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(754), 1,
sym_identifier,
[16671] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(756), 1,
anon_sym_from,
[16678] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(758), 1,
sym_identifier,
[16685] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(760), 1,
anon_sym_in,
[16692] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(762), 1,
anon_sym_LBRACE,
[16699] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(764), 1,
anon_sym_LBRACE,
[16706] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(766), 1,
anon_sym_LBRACE,
[16713] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(768), 1,
anon_sym_into,
[16720] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(770), 1,
ts_builtin_sym_end,
[16727] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(772), 1,
anon_sym_LPAREN,
[16734] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(774), 1,
sym_string,
[16741] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(776), 1,
anon_sym_GT,
[16748] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(778), 1,
anon_sym_EQ,
[16755] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(780), 1,
anon_sym_into,
[16762] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(782), 1,
anon_sym_from,
[16769] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(784), 1,
anon_sym_LPAREN,
[16776] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(786), 1,
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 110,
[SMALL_STATE(4)] = 218,
[SMALL_STATE(5)] = 328,
[SMALL_STATE(6)] = 435,
[SMALL_STATE(7)] = 542,
[SMALL_STATE(8)] = 649,
[SMALL_STATE(9)] = 756,
[SMALL_STATE(10)] = 863,
[SMALL_STATE(11)] = 970,
[SMALL_STATE(12)] = 1077,
[SMALL_STATE(13)] = 1184,
[SMALL_STATE(14)] = 1291,
[SMALL_STATE(15)] = 1398,
[SMALL_STATE(16)] = 1505,
[SMALL_STATE(17)] = 1612,
[SMALL_STATE(18)] = 1719,
[SMALL_STATE(19)] = 1826,
[SMALL_STATE(20)] = 1933,
[SMALL_STATE(21)] = 2037,
[SMALL_STATE(22)] = 2141,
[SMALL_STATE(23)] = 2245,
[SMALL_STATE(24)] = 2349,
[SMALL_STATE(25)] = 2453,
[SMALL_STATE(26)] = 2557,
[SMALL_STATE(27)] = 2661,
[SMALL_STATE(28)] = 2765,
[SMALL_STATE(29)] = 2869,
[SMALL_STATE(30)] = 2973,
[SMALL_STATE(31)] = 3077,
[SMALL_STATE(32)] = 3181,
[SMALL_STATE(33)] = 3285,
[SMALL_STATE(34)] = 3389,
[SMALL_STATE(35)] = 3492,
[SMALL_STATE(36)] = 3595,
[SMALL_STATE(37)] = 3698,
[SMALL_STATE(38)] = 3801,
[SMALL_STATE(39)] = 3904,
[SMALL_STATE(40)] = 4007,
[SMALL_STATE(41)] = 4110,
[SMALL_STATE(42)] = 4213,
[SMALL_STATE(43)] = 4282,
[SMALL_STATE(44)] = 4341,
[SMALL_STATE(45)] = 4398,
[SMALL_STATE(46)] = 4457,
[SMALL_STATE(47)] = 4526,
[SMALL_STATE(48)] = 4583,
[SMALL_STATE(49)] = 4651,
[SMALL_STATE(50)] = 4713,
[SMALL_STATE(51)] = 4769,
[SMALL_STATE(52)] = 4837,
[SMALL_STATE(53)] = 4895,
[SMALL_STATE(54)] = 4946,
[SMALL_STATE(55)] = 4997,
[SMALL_STATE(56)] = 5088,
[SMALL_STATE(57)] = 5145,
[SMALL_STATE(58)] = 5196,
[SMALL_STATE(59)] = 5247,
[SMALL_STATE(60)] = 5298,
[SMALL_STATE(61)] = 5349,
[SMALL_STATE(62)] = 5440,
[SMALL_STATE(63)] = 5531,
[SMALL_STATE(64)] = 5582,
[SMALL_STATE(65)] = 5633,
[SMALL_STATE(66)] = 5684,
[SMALL_STATE(67)] = 5735,
[SMALL_STATE(68)] = 5786,
[SMALL_STATE(69)] = 5837,
[SMALL_STATE(70)] = 5928,
[SMALL_STATE(71)] = 5979,
[SMALL_STATE(72)] = 6030,
[SMALL_STATE(73)] = 6081,
[SMALL_STATE(74)] = 6132,
[SMALL_STATE(75)] = 6223,
[SMALL_STATE(76)] = 6284,
[SMALL_STATE(77)] = 6375,
[SMALL_STATE(78)] = 6426,
[SMALL_STATE(79)] = 6498,
[SMALL_STATE(80)] = 6586,
[SMALL_STATE(81)] = 6674,
[SMALL_STATE(82)] = 6739,
[SMALL_STATE(83)] = 6806,
[SMALL_STATE(84)] = 6871,
[SMALL_STATE(85)] = 6936,
[SMALL_STATE(86)] = 7008,
[SMALL_STATE(87)] = 7080,
[SMALL_STATE(88)] = 7120,
[SMALL_STATE(89)] = 7164,
[SMALL_STATE(90)] = 7210,
[SMALL_STATE(91)] = 7266,
[SMALL_STATE(92)] = 7310,
[SMALL_STATE(93)] = 7366,
[SMALL_STATE(94)] = 7412,
[SMALL_STATE(95)] = 7452,
[SMALL_STATE(96)] = 7507,
[SMALL_STATE(97)] = 7550,
[SMALL_STATE(98)] = 7605,
[SMALL_STATE(99)] = 7650,
[SMALL_STATE(100)] = 7688,
[SMALL_STATE(101)] = 7726,
[SMALL_STATE(102)] = 7764,
[SMALL_STATE(103)] = 7802,
[SMALL_STATE(104)] = 7840,
[SMALL_STATE(105)] = 7878,
[SMALL_STATE(106)] = 7916,
[SMALL_STATE(107)] = 7954,
[SMALL_STATE(108)] = 7992,
[SMALL_STATE(109)] = 8048,
[SMALL_STATE(110)] = 8086,
[SMALL_STATE(111)] = 8124,
[SMALL_STATE(112)] = 8162,
[SMALL_STATE(113)] = 8200,
[SMALL_STATE(114)] = 8238,
[SMALL_STATE(115)] = 8294,
[SMALL_STATE(116)] = 8332,
[SMALL_STATE(117)] = 8377,
[SMALL_STATE(118)] = 8422,
[SMALL_STATE(119)] = 8482,
[SMALL_STATE(120)] = 8522,
[SMALL_STATE(121)] = 8582,
[SMALL_STATE(122)] = 8621,
[SMALL_STATE(123)] = 8658,
[SMALL_STATE(124)] = 8695,
[SMALL_STATE(125)] = 8736,
[SMALL_STATE(126)] = 8787,
[SMALL_STATE(127)] = 8824,
[SMALL_STATE(128)] = 8865,
[SMALL_STATE(129)] = 8916,
[SMALL_STATE(130)] = 8955,
[SMALL_STATE(131)] = 9013,
[SMALL_STATE(132)] = 9071,
[SMALL_STATE(133)] = 9105,
[SMALL_STATE(134)] = 9139,
[SMALL_STATE(135)] = 9173,
[SMALL_STATE(136)] = 9207,
[SMALL_STATE(137)] = 9241,
[SMALL_STATE(138)] = 9299,
[SMALL_STATE(139)] = 9357,
[SMALL_STATE(140)] = 9395,
[SMALL_STATE(141)] = 9429,
[SMALL_STATE(142)] = 9487,
[SMALL_STATE(143)] = 9521,
[SMALL_STATE(144)] = 9555,
[SMALL_STATE(145)] = 9589,
[SMALL_STATE(146)] = 9623,
[SMALL_STATE(147)] = 9681,
[SMALL_STATE(148)] = 9715,
[SMALL_STATE(149)] = 9749,
[SMALL_STATE(150)] = 9807,
[SMALL_STATE(151)] = 9841,
[SMALL_STATE(152)] = 9875,
[SMALL_STATE(153)] = 9933,
[SMALL_STATE(154)] = 9967,
[SMALL_STATE(155)] = 10001,
[SMALL_STATE(156)] = 10059,
[SMALL_STATE(157)] = 10093,
[SMALL_STATE(158)] = 10151,
[SMALL_STATE(159)] = 10209,
[SMALL_STATE(160)] = 10267,
[SMALL_STATE(161)] = 10325,
[SMALL_STATE(162)] = 10359,
[SMALL_STATE(163)] = 10409,
[SMALL_STATE(164)] = 10443,
[SMALL_STATE(165)] = 10483,
[SMALL_STATE(166)] = 10533,
[SMALL_STATE(167)] = 10591,
[SMALL_STATE(168)] = 10624,
[SMALL_STATE(169)] = 10657,
[SMALL_STATE(170)] = 10690,
[SMALL_STATE(171)] = 10723,
[SMALL_STATE(172)] = 10755,
[SMALL_STATE(173)] = 10787,
[SMALL_STATE(174)] = 10839,
[SMALL_STATE(175)] = 10891,
[SMALL_STATE(176)] = 10943,
[SMALL_STATE(177)] = 10995,
[SMALL_STATE(178)] = 11047,
[SMALL_STATE(179)] = 11099,
[SMALL_STATE(180)] = 11151,
[SMALL_STATE(181)] = 11203,
[SMALL_STATE(182)] = 11255,
[SMALL_STATE(183)] = 11289,
[SMALL_STATE(184)] = 11341,
[SMALL_STATE(185)] = 11393,
[SMALL_STATE(186)] = 11445,
[SMALL_STATE(187)] = 11497,
[SMALL_STATE(188)] = 11549,
[SMALL_STATE(189)] = 11603,
[SMALL_STATE(190)] = 11655,
[SMALL_STATE(191)] = 11707,
[SMALL_STATE(192)] = 11759,
[SMALL_STATE(193)] = 11811,
[SMALL_STATE(194)] = 11863,
[SMALL_STATE(195)] = 11915,
[SMALL_STATE(196)] = 11947,
[SMALL_STATE(197)] = 11999,
[SMALL_STATE(198)] = 12041,
[SMALL_STATE(199)] = 12093,
[SMALL_STATE(200)] = 12125,
[SMALL_STATE(201)] = 12157,
[SMALL_STATE(202)] = 12189,
[SMALL_STATE(203)] = 12241,
[SMALL_STATE(204)] = 12293,
[SMALL_STATE(205)] = 12345,
[SMALL_STATE(206)] = 12397,
[SMALL_STATE(207)] = 12449,
[SMALL_STATE(208)] = 12501,
[SMALL_STATE(209)] = 12553,
[SMALL_STATE(210)] = 12605,
[SMALL_STATE(211)] = 12657,
[SMALL_STATE(212)] = 12709,
[SMALL_STATE(213)] = 12761,
[SMALL_STATE(214)] = 12813,
[SMALL_STATE(215)] = 12845,
[SMALL_STATE(216)] = 12897,
[SMALL_STATE(217)] = 12949,
[SMALL_STATE(218)] = 13001,
[SMALL_STATE(219)] = 13033,
[SMALL_STATE(220)] = 13085,
[SMALL_STATE(221)] = 13137,
[SMALL_STATE(222)] = 13169,
[SMALL_STATE(223)] = 13221,
[SMALL_STATE(224)] = 13273,
[SMALL_STATE(225)] = 13325,
[SMALL_STATE(226)] = 13357,
[SMALL_STATE(227)] = 13409,
[SMALL_STATE(228)] = 13441,
[SMALL_STATE(229)] = 13493,
[SMALL_STATE(230)] = 13545,
[SMALL_STATE(231)] = 13597,
[SMALL_STATE(232)] = 13649,
[SMALL_STATE(233)] = 13701,
[SMALL_STATE(234)] = 13753,
[SMALL_STATE(235)] = 13805,
[SMALL_STATE(236)] = 13857,
[SMALL_STATE(237)] = 13909,
[SMALL_STATE(238)] = 13961,
[SMALL_STATE(239)] = 14013,
[SMALL_STATE(240)] = 14065,
[SMALL_STATE(241)] = 14097,
[SMALL_STATE(242)] = 14149,
[SMALL_STATE(243)] = 14201,
[SMALL_STATE(244)] = 14233,
[SMALL_STATE(245)] = 14265,
[SMALL_STATE(246)] = 14297,
[SMALL_STATE(247)] = 14349,
[SMALL_STATE(248)] = 14386,
[SMALL_STATE(249)] = 14421,
[SMALL_STATE(250)] = 14454,
[SMALL_STATE(251)] = 14487,
[SMALL_STATE(252)] = 14530,
[SMALL_STATE(253)] = 14573,
[SMALL_STATE(254)] = 14602,
[SMALL_STATE(255)] = 14645,
[SMALL_STATE(256)] = 14688,
[SMALL_STATE(257)] = 14723,
[SMALL_STATE(258)] = 14766,
[SMALL_STATE(259)] = 14811,
[SMALL_STATE(260)] = 14857,
[SMALL_STATE(261)] = 14899,
[SMALL_STATE(262)] = 14945,
[SMALL_STATE(263)] = 14977,
[SMALL_STATE(264)] = 15023,
[SMALL_STATE(265)] = 15069,
[SMALL_STATE(266)] = 15103,
[SMALL_STATE(267)] = 15145,
[SMALL_STATE(268)] = 15191,
[SMALL_STATE(269)] = 15237,
[SMALL_STATE(270)] = 15283,
[SMALL_STATE(271)] = 15329,
[SMALL_STATE(272)] = 15369,
[SMALL_STATE(273)] = 15409,
[SMALL_STATE(274)] = 15431,
[SMALL_STATE(275)] = 15453,
[SMALL_STATE(276)] = 15475,
[SMALL_STATE(277)] = 15495,
[SMALL_STATE(278)] = 15515,
[SMALL_STATE(279)] = 15535,
[SMALL_STATE(280)] = 15555,
[SMALL_STATE(281)] = 15574,
[SMALL_STATE(282)] = 15593,
[SMALL_STATE(283)] = 15618,
[SMALL_STATE(284)] = 15643,
[SMALL_STATE(285)] = 15657,
[SMALL_STATE(286)] = 15673,
[SMALL_STATE(287)] = 15693,
[SMALL_STATE(288)] = 15707,
[SMALL_STATE(289)] = 15721,
[SMALL_STATE(290)] = 15740,
[SMALL_STATE(291)] = 15759,
[SMALL_STATE(292)] = 15778,
[SMALL_STATE(293)] = 15797,
[SMALL_STATE(294)] = 15816,
[SMALL_STATE(295)] = 15835,
[SMALL_STATE(296)] = 15854,
[SMALL_STATE(297)] = 15873,
[SMALL_STATE(298)] = 15887,
[SMALL_STATE(299)] = 15899,
[SMALL_STATE(300)] = 15913,
[SMALL_STATE(301)] = 15927,
[SMALL_STATE(302)] = 15939,
[SMALL_STATE(303)] = 15949,
[SMALL_STATE(304)] = 15961,
[SMALL_STATE(305)] = 15971,
[SMALL_STATE(306)] = 15981,
[SMALL_STATE(307)] = 15991,
[SMALL_STATE(308)] = 16001,
[SMALL_STATE(309)] = 16011,
[SMALL_STATE(310)] = 16021,
[SMALL_STATE(311)] = 16031,
[SMALL_STATE(312)] = 16041,
[SMALL_STATE(313)] = 16055,
[SMALL_STATE(314)] = 16069,
[SMALL_STATE(315)] = 16083,
[SMALL_STATE(316)] = 16093,
[SMALL_STATE(317)] = 16107,
[SMALL_STATE(318)] = 16117,
[SMALL_STATE(319)] = 16127,
[SMALL_STATE(320)] = 16141,
[SMALL_STATE(321)] = 16155,
[SMALL_STATE(322)] = 16168,
[SMALL_STATE(323)] = 16181,
[SMALL_STATE(324)] = 16194,
[SMALL_STATE(325)] = 16207,
[SMALL_STATE(326)] = 16220,
[SMALL_STATE(327)] = 16233,
[SMALL_STATE(328)] = 16246,
[SMALL_STATE(329)] = 16257,
[SMALL_STATE(330)] = 16270,
[SMALL_STATE(331)] = 16283,
[SMALL_STATE(332)] = 16296,
[SMALL_STATE(333)] = 16309,
[SMALL_STATE(334)] = 16322,
[SMALL_STATE(335)] = 16335,
[SMALL_STATE(336)] = 16348,
[SMALL_STATE(337)] = 16361,
[SMALL_STATE(338)] = 16374,
[SMALL_STATE(339)] = 16387,
[SMALL_STATE(340)] = 16398,
[SMALL_STATE(341)] = 16411,
[SMALL_STATE(342)] = 16424,
[SMALL_STATE(343)] = 16435,
[SMALL_STATE(344)] = 16448,
[SMALL_STATE(345)] = 16461,
[SMALL_STATE(346)] = 16474,
[SMALL_STATE(347)] = 16484,
[SMALL_STATE(348)] = 16494,
[SMALL_STATE(349)] = 16504,
[SMALL_STATE(350)] = 16514,
[SMALL_STATE(351)] = 16524,
[SMALL_STATE(352)] = 16534,
[SMALL_STATE(353)] = 16544,
[SMALL_STATE(354)] = 16552,
[SMALL_STATE(355)] = 16562,
[SMALL_STATE(356)] = 16570,
[SMALL_STATE(357)] = 16578,
[SMALL_STATE(358)] = 16588,
[SMALL_STATE(359)] = 16598,
[SMALL_STATE(360)] = 16608,
[SMALL_STATE(361)] = 16615,
[SMALL_STATE(362)] = 16622,
[SMALL_STATE(363)] = 16629,
[SMALL_STATE(364)] = 16636,
[SMALL_STATE(365)] = 16643,
[SMALL_STATE(366)] = 16650,
[SMALL_STATE(367)] = 16657,
[SMALL_STATE(368)] = 16664,
[SMALL_STATE(369)] = 16671,
[SMALL_STATE(370)] = 16678,
[SMALL_STATE(371)] = 16685,
[SMALL_STATE(372)] = 16692,
[SMALL_STATE(373)] = 16699,
[SMALL_STATE(374)] = 16706,
[SMALL_STATE(375)] = 16713,
[SMALL_STATE(376)] = 16720,
[SMALL_STATE(377)] = 16727,
[SMALL_STATE(378)] = 16734,
[SMALL_STATE(379)] = 16741,
[SMALL_STATE(380)] = 16748,
[SMALL_STATE(381)] = 16755,
[SMALL_STATE(382)] = 16762,
[SMALL_STATE(383)] = 16769,
[SMALL_STATE(384)] = 16776,
};
static const TSParseActionEntry ts_parse_actions[] = {
[0] = {.entry = {.count = 0, .reusable = false}},
[1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(),
[3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381),
[35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75),
[45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[49] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(49),
[52] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(374),
[55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(203),
[61] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70),
[64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(70),
[67] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(71),
[70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(131),
[73] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(219),
[76] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(241),
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(246),
[82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(384),
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(384),
[88] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(349),
[91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(381),
[94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(299),
[97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(352),
[100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(192),
[103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(378),
[106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168),
[138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197),
[140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373),
[142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133),
[148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
[156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176),
[158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177),
[160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365),
[162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365),
[164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351),
[166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354),
[172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360),
[176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3),
[178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
[190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377),
[192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253),
[218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284),
[220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5),
[224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5),
[226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334),
[234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99),
[240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
[244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314),
[250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347),
[252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383),
[254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3),
[276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3),
[278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35),
[320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4),
[328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4),
[330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150),
[334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338),
[336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313),
[338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346),
[340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(150),
[359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(338),
[364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(237),
[367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(133),
[370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(133),
[373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(132),
[376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(157),
[379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(313),
[382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(346),
[385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313),
[391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277),
[407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341),
[415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(238),
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148),
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(111),
[457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(334),
[460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(222),
[463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(99),
[466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(99),
[469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(103),
[472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(155),
[475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(314),
[480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(347),
[483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(111),
[494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(334),
[497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(222),
[500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(99),
[505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(99),
[508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(103),
[511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(155),
[514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(314),
[517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(347),
[520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358),
[542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359),
[544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332),
[548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348),
[550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350),
[554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126),
[568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4, .production_id = 2),
[570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4, .production_id = 2),
[572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122),
[578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123),
[588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 1),
[594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3, .production_id = 1),
[596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181),
[600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317),
[606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362),
[608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325),
[624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3),
[626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3),
[628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2),
[632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2),
[634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326),
[648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379),
[650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3),
[652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(202),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372),
[665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2), SHIFT_REPEAT(357),
[670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_repeat1, 2),
[672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289),
[678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(339),
[693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339),
[697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278),
[699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380),
[701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
[709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(380),
[726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2),
[730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324),
[734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3),
[738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318),
[740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366),
[750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235),
[756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174),
[760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20),
[768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370),
[770] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368),
[782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371),
};
#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,
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif