dust/tree-sitter-dust/src/parser.c
2023-11-30 09:48:56 -05:00

12081 lines
273 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 298
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 96
#define ALIAS_COUNT 0
#define TOKEN_COUNT 56
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 0
#define MAX_ALIAS_SEQUENCE_LENGTH 6
#define PRODUCTION_ID_COUNT 1
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_PIPE = 44,
anon_sym_return = 45,
anon_sym_use = 46,
anon_sym_any = 47,
anon_sym_bool = 48,
anon_sym_float = 49,
anon_sym_fn = 50,
anon_sym_DASH_GT = 51,
anon_sym_int = 52,
anon_sym_map = 53,
anon_sym_num = 54,
anon_sym_str = 55,
sym_root = 56,
sym_block = 57,
sym_statement = 58,
sym_expression = 59,
sym__expression_kind = 60,
aux_sym__expression_list = 61,
sym_value = 62,
sym_boolean = 63,
sym_list = 64,
sym_map = 65,
sym_index = 66,
sym_math = 67,
sym_math_operator = 68,
sym_logic = 69,
sym_logic_operator = 70,
sym_assignment = 71,
sym_index_assignment = 72,
sym_assignment_operator = 73,
sym_if_else = 74,
sym_if = 75,
sym_else_if = 76,
sym_else = 77,
sym_match = 78,
sym_while = 79,
sym_for = 80,
sym_return = 81,
sym_use = 82,
sym_type_definition = 83,
sym_type = 84,
sym_function_declaration = 85,
sym_function = 86,
sym_function_call = 87,
sym_yield = 88,
aux_sym_root_repeat1 = 89,
aux_sym_list_repeat1 = 90,
aux_sym_map_repeat1 = 91,
aux_sym_if_else_repeat1 = 92,
aux_sym_match_repeat1 = 93,
aux_sym_identifier_list_repeat1 = 94,
aux_sym_type_repeat1 = 95,
};
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_PIPE] = "|",
[anon_sym_return] = "return",
[anon_sym_use] = "use",
[anon_sym_any] = "any",
[anon_sym_bool] = "bool",
[anon_sym_float] = "float",
[anon_sym_fn] = "fn",
[anon_sym_DASH_GT] = "->",
[anon_sym_int] = "int",
[anon_sym_map] = "map",
[anon_sym_num] = "num",
[anon_sym_str] = "str",
[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_return] = "return",
[sym_use] = "use",
[sym_type_definition] = "type_definition",
[sym_type] = "type",
[sym_function_declaration] = "function_declaration",
[sym_function] = "function",
[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_type_repeat1] = "type_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_PIPE] = anon_sym_PIPE,
[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_float] = anon_sym_float,
[anon_sym_fn] = anon_sym_fn,
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
[anon_sym_int] = anon_sym_int,
[anon_sym_map] = anon_sym_map,
[anon_sym_num] = anon_sym_num,
[anon_sym_str] = anon_sym_str,
[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_return] = sym_return,
[sym_use] = sym_use,
[sym_type_definition] = sym_type_definition,
[sym_type] = sym_type,
[sym_function_declaration] = sym_function_declaration,
[sym_function] = sym_function,
[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_type_repeat1] = aux_sym_type_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_PIPE] = {
.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_float] = {
.visible = true,
.named = false,
},
[anon_sym_fn] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
[anon_sym_int] = {
.visible = true,
.named = false,
},
[anon_sym_map] = {
.visible = true,
.named = false,
},
[anon_sym_num] = {
.visible = true,
.named = false,
},
[anon_sym_str] = {
.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_return] = {
.visible = true,
.named = true,
},
[sym_use] = {
.visible = true,
.named = true,
},
[sym_type_definition] = {
.visible = true,
.named = true,
},
[sym_type] = {
.visible = true,
.named = true,
},
[sym_function_declaration] = {
.visible = true,
.named = true,
},
[sym_function] = {
.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_type_repeat1] = {
.visible = false,
.named = false,
},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 2,
[5] = 5,
[6] = 6,
[7] = 6,
[8] = 5,
[9] = 6,
[10] = 5,
[11] = 11,
[12] = 5,
[13] = 6,
[14] = 14,
[15] = 15,
[16] = 14,
[17] = 14,
[18] = 18,
[19] = 18,
[20] = 20,
[21] = 21,
[22] = 14,
[23] = 15,
[24] = 24,
[25] = 15,
[26] = 15,
[27] = 27,
[28] = 28,
[29] = 20,
[30] = 21,
[31] = 24,
[32] = 32,
[33] = 27,
[34] = 34,
[35] = 35,
[36] = 32,
[37] = 35,
[38] = 38,
[39] = 39,
[40] = 40,
[41] = 41,
[42] = 42,
[43] = 43,
[44] = 44,
[45] = 40,
[46] = 46,
[47] = 47,
[48] = 42,
[49] = 40,
[50] = 50,
[51] = 51,
[52] = 52,
[53] = 53,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 42,
[58] = 58,
[59] = 59,
[60] = 59,
[61] = 61,
[62] = 61,
[63] = 63,
[64] = 64,
[65] = 65,
[66] = 18,
[67] = 24,
[68] = 18,
[69] = 20,
[70] = 21,
[71] = 24,
[72] = 20,
[73] = 21,
[74] = 74,
[75] = 53,
[76] = 54,
[77] = 18,
[78] = 21,
[79] = 52,
[80] = 44,
[81] = 41,
[82] = 56,
[83] = 51,
[84] = 46,
[85] = 85,
[86] = 43,
[87] = 47,
[88] = 20,
[89] = 24,
[90] = 55,
[91] = 50,
[92] = 18,
[93] = 24,
[94] = 21,
[95] = 20,
[96] = 56,
[97] = 50,
[98] = 51,
[99] = 53,
[100] = 54,
[101] = 52,
[102] = 44,
[103] = 43,
[104] = 41,
[105] = 55,
[106] = 46,
[107] = 47,
[108] = 108,
[109] = 109,
[110] = 110,
[111] = 110,
[112] = 110,
[113] = 65,
[114] = 28,
[115] = 115,
[116] = 64,
[117] = 39,
[118] = 118,
[119] = 119,
[120] = 119,
[121] = 121,
[122] = 118,
[123] = 119,
[124] = 121,
[125] = 125,
[126] = 126,
[127] = 121,
[128] = 125,
[129] = 129,
[130] = 130,
[131] = 125,
[132] = 132,
[133] = 118,
[134] = 134,
[135] = 135,
[136] = 63,
[137] = 61,
[138] = 61,
[139] = 139,
[140] = 140,
[141] = 141,
[142] = 142,
[143] = 143,
[144] = 144,
[145] = 145,
[146] = 146,
[147] = 147,
[148] = 148,
[149] = 149,
[150] = 142,
[151] = 151,
[152] = 152,
[153] = 153,
[154] = 154,
[155] = 155,
[156] = 148,
[157] = 147,
[158] = 148,
[159] = 147,
[160] = 141,
[161] = 161,
[162] = 144,
[163] = 163,
[164] = 164,
[165] = 146,
[166] = 166,
[167] = 148,
[168] = 147,
[169] = 151,
[170] = 126,
[171] = 171,
[172] = 163,
[173] = 149,
[174] = 145,
[175] = 175,
[176] = 142,
[177] = 143,
[178] = 178,
[179] = 140,
[180] = 175,
[181] = 181,
[182] = 164,
[183] = 183,
[184] = 184,
[185] = 185,
[186] = 146,
[187] = 146,
[188] = 146,
[189] = 147,
[190] = 144,
[191] = 146,
[192] = 147,
[193] = 148,
[194] = 194,
[195] = 195,
[196] = 148,
[197] = 181,
[198] = 175,
[199] = 195,
[200] = 129,
[201] = 201,
[202] = 166,
[203] = 203,
[204] = 204,
[205] = 204,
[206] = 206,
[207] = 207,
[208] = 208,
[209] = 209,
[210] = 207,
[211] = 208,
[212] = 209,
[213] = 213,
[214] = 213,
[215] = 215,
[216] = 216,
[217] = 217,
[218] = 218,
[219] = 155,
[220] = 126,
[221] = 129,
[222] = 222,
[223] = 223,
[224] = 224,
[225] = 225,
[226] = 222,
[227] = 227,
[228] = 224,
[229] = 229,
[230] = 230,
[231] = 108,
[232] = 109,
[233] = 233,
[234] = 115,
[235] = 130,
[236] = 129,
[237] = 126,
[238] = 238,
[239] = 134,
[240] = 238,
[241] = 139,
[242] = 201,
[243] = 203,
[244] = 194,
[245] = 183,
[246] = 143,
[247] = 247,
[248] = 184,
[249] = 171,
[250] = 153,
[251] = 178,
[252] = 161,
[253] = 143,
[254] = 154,
[255] = 185,
[256] = 152,
[257] = 257,
[258] = 258,
[259] = 259,
[260] = 260,
[261] = 260,
[262] = 262,
[263] = 260,
[264] = 262,
[265] = 258,
[266] = 257,
[267] = 267,
[268] = 268,
[269] = 269,
[270] = 270,
[271] = 271,
[272] = 272,
[273] = 269,
[274] = 271,
[275] = 259,
[276] = 262,
[277] = 270,
[278] = 278,
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 282,
[283] = 283,
[284] = 284,
[285] = 285,
[286] = 286,
[287] = 287,
[288] = 288,
[289] = 283,
[290] = 290,
[291] = 282,
[292] = 281,
[293] = 287,
[294] = 282,
[295] = 287,
[296] = 282,
[297] = 284,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(31);
if (lookahead == ')') ADVANCE(32);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(33);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
if (lookahead == ':') ADVANCE(53);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(52);
if (lookahead == '>') ADVANCE(69);
if (lookahead == '[') ADVANCE(48);
if (lookahead == ']') ADVANCE(49);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(41);
if (lookahead == 'e') ADVANCE(39);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(78);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(31);
if (lookahead == ')') ADVANCE(32);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(33);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
if (lookahead == ':') ADVANCE(53);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(13);
if (lookahead == '>') ADVANCE(69);
if (lookahead == '[') ADVANCE(48);
if (lookahead == ']') ADVANCE(49);
if (lookahead == '`') ADVANCE(15);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(33);
if (lookahead == '-') ADVANCE(57);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
if (lookahead == ':') ADVANCE(53);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(52);
if (lookahead == '>') ADVANCE(69);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 3:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
if (lookahead == ',') ADVANCE(33);
if (lookahead == '-') ADVANCE(57);
if (lookahead == '/') ADVANCE(62);
if (lookahead == ':') ADVANCE(53);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(51);
if (lookahead == '>') ADVANCE(69);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 4:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(55);
if (lookahead == ',') ADVANCE(33);
if (lookahead == '-') ADVANCE(58);
if (lookahead == '/') ADVANCE(62);
if (lookahead == ':') ADVANCE(53);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(14);
if (lookahead == '>') ADVANCE(69);
if (lookahead == 'e') ADVANCE(39);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(47);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '#') ADVANCE(21);
if (lookahead == '+') ADVANCE(11);
if (lookahead == ',') ADVANCE(33);
if (lookahead == '-') ADVANCE(12);
if (lookahead == '=') ADVANCE(50);
if (lookahead == '>') ADVANCE(68);
if (lookahead == '[') ADVANCE(48);
if (lookahead == ']') ADVANCE(49);
if (lookahead == '|') ADVANCE(78);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(6)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 7:
if (lookahead == '&') ADVANCE(66);
END_STATE();
case 8:
if (lookahead == '\'') ADVANCE(47);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == '.') ADVANCE(54);
END_STATE();
case 10:
if (lookahead == '=') ADVANCE(65);
END_STATE();
case 11:
if (lookahead == '=') ADVANCE(73);
END_STATE();
case 12:
if (lookahead == '=') ADVANCE(74);
if (lookahead == '>') ADVANCE(79);
END_STATE();
case 13:
if (lookahead == '=') ADVANCE(64);
END_STATE();
case 14:
if (lookahead == '=') ADVANCE(64);
if (lookahead == '>') ADVANCE(76);
END_STATE();
case 15:
if (lookahead == '`') ADVANCE(47);
if (lookahead != 0) ADVANCE(15);
END_STATE();
case 16:
if (lookahead == 'f') ADVANCE(19);
END_STATE();
case 17:
if (lookahead == 'f') ADVANCE(75);
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(77);
END_STATE();
case 21:
if (lookahead == '|') ADVANCE(27);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 22:
if (lookahead == '|') ADVANCE(67);
END_STATE();
case 23:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46);
END_STATE();
case 24:
if (eof) ADVANCE(25);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(21);
if (lookahead == '%') ADVANCE(63);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(31);
if (lookahead == '*') ADVANCE(61);
if (lookahead == '+') ADVANCE(56);
if (lookahead == '-') ADVANCE(59);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(62);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
if (lookahead == ':') ADVANCE(53);
if (lookahead == ';') ADVANCE(30);
if (lookahead == '<') ADVANCE(70);
if (lookahead == '=') ADVANCE(51);
if (lookahead == '>') ADVANCE(69);
if (lookahead == '[') ADVANCE(48);
if (lookahead == '`') ADVANCE(15);
if (lookahead == 'a') ADVANCE(41);
if (lookahead == '{') ADVANCE(28);
if (lookahead == '|') ADVANCE(22);
if (lookahead == '}') ADVANCE(29);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 25:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 26:
ACCEPT_TOKEN(sym__comment);
END_STATE();
case 27:
ACCEPT_TOKEN(sym__comment);
if (lookahead == '|') ADVANCE(27);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(26);
if (lookahead != 0) ADVANCE(21);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 29:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 34:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 35:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(18);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 36:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 37:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'c') ADVANCE(36);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 38:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(35);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 39:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 40:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 41:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 42:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 43:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 44:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(34);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(44);
END_STATE();
case 45:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
END_STATE();
case 46:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(46);
END_STATE();
case 47:
ACCEPT_TOKEN(sym_string);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 50:
ACCEPT_TOKEN(anon_sym_EQ);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(64);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(64);
if (lookahead == '>') ADVANCE(76);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(73);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(74);
if (lookahead == '>') ADVANCE(79);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '>') ADVANCE(79);
END_STATE();
case 59:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
if (lookahead == '=') ADVANCE(74);
if (lookahead == '>') ADVANCE(79);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(45);
if (lookahead == '>') ADVANCE(79);
END_STATE();
case 61:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 62:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 63:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 64:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 65:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 66:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 67:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 68:
ACCEPT_TOKEN(anon_sym_GT);
END_STATE();
case 69:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(71);
END_STATE();
case 70:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(72);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 72:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 74:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 75:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 76:
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
case 77:
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
case 78:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 79:
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 == 'm') ADVANCE(6);
if (lookahead == 'n') 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 == 'l') ADVANCE(18);
if (lookahead == 'n') ADVANCE(19);
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 5:
if (lookahead == 'f') ADVANCE(21);
if (lookahead == 'n') ADVANCE(22);
END_STATE();
case 6:
if (lookahead == 'a') ADVANCE(23);
END_STATE();
case 7:
if (lookahead == 'u') ADVANCE(24);
END_STATE();
case 8:
if (lookahead == 'e') ADVANCE(25);
END_STATE();
case 9:
if (lookahead == 't') ADVANCE(26);
END_STATE();
case 10:
if (lookahead == 'r') ADVANCE(27);
END_STATE();
case 11:
if (lookahead == 's') ADVANCE(28);
END_STATE();
case 12:
if (lookahead == 'h') ADVANCE(29);
END_STATE();
case 13:
if (lookahead == 'y') ADVANCE(30);
END_STATE();
case 14:
if (lookahead == 'y') ADVANCE(31);
END_STATE();
case 15:
if (lookahead == 'o') ADVANCE(32);
END_STATE();
case 16:
if (lookahead == 's') ADVANCE(33);
END_STATE();
case 17:
if (lookahead == 'l') ADVANCE(34);
END_STATE();
case 18:
if (lookahead == 'o') ADVANCE(35);
END_STATE();
case 19:
ACCEPT_TOKEN(anon_sym_fn);
END_STATE();
case 20:
if (lookahead == 'r') ADVANCE(36);
END_STATE();
case 21:
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 22:
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 't') ADVANCE(37);
END_STATE();
case 23:
if (lookahead == 'p') ADVANCE(38);
if (lookahead == 't') ADVANCE(39);
END_STATE();
case 24:
if (lookahead == 'm') ADVANCE(40);
END_STATE();
case 25:
if (lookahead == 't') ADVANCE(41);
END_STATE();
case 26:
if (lookahead == 'r') ADVANCE(42);
END_STATE();
case 27:
if (lookahead == 'u') ADVANCE(43);
END_STATE();
case 28:
if (lookahead == 'e') ADVANCE(44);
END_STATE();
case 29:
if (lookahead == 'i') ADVANCE(45);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_any);
END_STATE();
case 31:
if (lookahead == 'n') ADVANCE(46);
END_STATE();
case 32:
if (lookahead == 'l') ADVANCE(47);
END_STATE();
case 33:
if (lookahead == 'e') ADVANCE(48);
END_STATE();
case 34:
if (lookahead == 's') ADVANCE(49);
END_STATE();
case 35:
if (lookahead == 'a') ADVANCE(50);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_int);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_map);
END_STATE();
case 39:
if (lookahead == 'c') ADVANCE(51);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_num);
END_STATE();
case 41:
if (lookahead == 'u') ADVANCE(52);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_str);
END_STATE();
case 43:
if (lookahead == 'e') ADVANCE(53);
END_STATE();
case 44:
ACCEPT_TOKEN(anon_sym_use);
END_STATE();
case 45:
if (lookahead == 'l') ADVANCE(54);
END_STATE();
case 46:
if (lookahead == 'c') ADVANCE(55);
END_STATE();
case 47:
ACCEPT_TOKEN(anon_sym_bool);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 49:
if (lookahead == 'e') ADVANCE(56);
END_STATE();
case 50:
if (lookahead == 't') ADVANCE(57);
END_STATE();
case 51:
if (lookahead == 'h') ADVANCE(58);
END_STATE();
case 52:
if (lookahead == 'r') ADVANCE(59);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 54:
if (lookahead == 'e') ADVANCE(60);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_float);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_match);
END_STATE();
case 59:
if (lookahead == 'n') ADVANCE(61);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 61:
ACCEPT_TOKEN(anon_sym_return);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 24},
[2] = {.lex_state = 24},
[3] = {.lex_state = 24},
[4] = {.lex_state = 24},
[5] = {.lex_state = 24},
[6] = {.lex_state = 24},
[7] = {.lex_state = 24},
[8] = {.lex_state = 24},
[9] = {.lex_state = 24},
[10] = {.lex_state = 24},
[11] = {.lex_state = 24},
[12] = {.lex_state = 24},
[13] = {.lex_state = 24},
[14] = {.lex_state = 24},
[15] = {.lex_state = 24},
[16] = {.lex_state = 24},
[17] = {.lex_state = 24},
[18] = {.lex_state = 24},
[19] = {.lex_state = 24},
[20] = {.lex_state = 24},
[21] = {.lex_state = 24},
[22] = {.lex_state = 24},
[23] = {.lex_state = 24},
[24] = {.lex_state = 24},
[25] = {.lex_state = 24},
[26] = {.lex_state = 24},
[27] = {.lex_state = 24},
[28] = {.lex_state = 24},
[29] = {.lex_state = 24},
[30] = {.lex_state = 24},
[31] = {.lex_state = 24},
[32] = {.lex_state = 24},
[33] = {.lex_state = 24},
[34] = {.lex_state = 24},
[35] = {.lex_state = 24},
[36] = {.lex_state = 24},
[37] = {.lex_state = 24},
[38] = {.lex_state = 24},
[39] = {.lex_state = 24},
[40] = {.lex_state = 1},
[41] = {.lex_state = 24},
[42] = {.lex_state = 1},
[43] = {.lex_state = 24},
[44] = {.lex_state = 24},
[45] = {.lex_state = 1},
[46] = {.lex_state = 24},
[47] = {.lex_state = 24},
[48] = {.lex_state = 1},
[49] = {.lex_state = 1},
[50] = {.lex_state = 24},
[51] = {.lex_state = 24},
[52] = {.lex_state = 24},
[53] = {.lex_state = 24},
[54] = {.lex_state = 24},
[55] = {.lex_state = 24},
[56] = {.lex_state = 24},
[57] = {.lex_state = 1},
[58] = {.lex_state = 24},
[59] = {.lex_state = 1},
[60] = {.lex_state = 1},
[61] = {.lex_state = 24},
[62] = {.lex_state = 24},
[63] = {.lex_state = 24},
[64] = {.lex_state = 24},
[65] = {.lex_state = 24},
[66] = {.lex_state = 1},
[67] = {.lex_state = 1},
[68] = {.lex_state = 1},
[69] = {.lex_state = 1},
[70] = {.lex_state = 1},
[71] = {.lex_state = 1},
[72] = {.lex_state = 1},
[73] = {.lex_state = 1},
[74] = {.lex_state = 1},
[75] = {.lex_state = 1},
[76] = {.lex_state = 1},
[77] = {.lex_state = 2},
[78] = {.lex_state = 2},
[79] = {.lex_state = 1},
[80] = {.lex_state = 1},
[81] = {.lex_state = 1},
[82] = {.lex_state = 1},
[83] = {.lex_state = 1},
[84] = {.lex_state = 1},
[85] = {.lex_state = 1},
[86] = {.lex_state = 1},
[87] = {.lex_state = 1},
[88] = {.lex_state = 2},
[89] = {.lex_state = 2},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
[92] = {.lex_state = 2},
[93] = {.lex_state = 2},
[94] = {.lex_state = 2},
[95] = {.lex_state = 2},
[96] = {.lex_state = 2},
[97] = {.lex_state = 2},
[98] = {.lex_state = 2},
[99] = {.lex_state = 2},
[100] = {.lex_state = 2},
[101] = {.lex_state = 2},
[102] = {.lex_state = 2},
[103] = {.lex_state = 2},
[104] = {.lex_state = 2},
[105] = {.lex_state = 2},
[106] = {.lex_state = 2},
[107] = {.lex_state = 2},
[108] = {.lex_state = 0},
[109] = {.lex_state = 0},
[110] = {.lex_state = 1},
[111] = {.lex_state = 1},
[112] = {.lex_state = 1},
[113] = {.lex_state = 1},
[114] = {.lex_state = 3},
[115] = {.lex_state = 0},
[116] = {.lex_state = 1},
[117] = {.lex_state = 3},
[118] = {.lex_state = 1},
[119] = {.lex_state = 1},
[120] = {.lex_state = 1},
[121] = {.lex_state = 1},
[122] = {.lex_state = 1},
[123] = {.lex_state = 1},
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
[126] = {.lex_state = 0},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 0},
[130] = {.lex_state = 0},
[131] = {.lex_state = 1},
[132] = {.lex_state = 1},
[133] = {.lex_state = 1},
[134] = {.lex_state = 0},
[135] = {.lex_state = 1},
[136] = {.lex_state = 2},
[137] = {.lex_state = 2},
[138] = {.lex_state = 2},
[139] = {.lex_state = 24},
[140] = {.lex_state = 2},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
[143] = {.lex_state = 24},
[144] = {.lex_state = 1},
[145] = {.lex_state = 1},
[146] = {.lex_state = 1},
[147] = {.lex_state = 1},
[148] = {.lex_state = 1},
[149] = {.lex_state = 1},
[150] = {.lex_state = 1},
[151] = {.lex_state = 1},
[152] = {.lex_state = 24},
[153] = {.lex_state = 24},
[154] = {.lex_state = 24},
[155] = {.lex_state = 24},
[156] = {.lex_state = 1},
[157] = {.lex_state = 1},
[158] = {.lex_state = 1},
[159] = {.lex_state = 1},
[160] = {.lex_state = 1},
[161] = {.lex_state = 24},
[162] = {.lex_state = 1},
[163] = {.lex_state = 1},
[164] = {.lex_state = 2},
[165] = {.lex_state = 1},
[166] = {.lex_state = 1},
[167] = {.lex_state = 1},
[168] = {.lex_state = 1},
[169] = {.lex_state = 1},
[170] = {.lex_state = 24},
[171] = {.lex_state = 24},
[172] = {.lex_state = 1},
[173] = {.lex_state = 1},
[174] = {.lex_state = 1},
[175] = {.lex_state = 1},
[176] = {.lex_state = 1},
[177] = {.lex_state = 24},
[178] = {.lex_state = 24},
[179] = {.lex_state = 2},
[180] = {.lex_state = 1},
[181] = {.lex_state = 2},
[182] = {.lex_state = 2},
[183] = {.lex_state = 24},
[184] = {.lex_state = 24},
[185] = {.lex_state = 24},
[186] = {.lex_state = 1},
[187] = {.lex_state = 1},
[188] = {.lex_state = 1},
[189] = {.lex_state = 1},
[190] = {.lex_state = 1},
[191] = {.lex_state = 1},
[192] = {.lex_state = 1},
[193] = {.lex_state = 1},
[194] = {.lex_state = 24},
[195] = {.lex_state = 2},
[196] = {.lex_state = 1},
[197] = {.lex_state = 2},
[198] = {.lex_state = 1},
[199] = {.lex_state = 2},
[200] = {.lex_state = 24},
[201] = {.lex_state = 24},
[202] = {.lex_state = 1},
[203] = {.lex_state = 24},
[204] = {.lex_state = 4},
[205] = {.lex_state = 4},
[206] = {.lex_state = 24},
[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 = 6},
[215] = {.lex_state = 6},
[216] = {.lex_state = 6},
[217] = {.lex_state = 6},
[218] = {.lex_state = 6},
[219] = {.lex_state = 1},
[220] = {.lex_state = 1},
[221] = {.lex_state = 1},
[222] = {.lex_state = 1},
[223] = {.lex_state = 1},
[224] = {.lex_state = 1},
[225] = {.lex_state = 1},
[226] = {.lex_state = 1},
[227] = {.lex_state = 1},
[228] = {.lex_state = 1},
[229] = {.lex_state = 1},
[230] = {.lex_state = 1},
[231] = {.lex_state = 4},
[232] = {.lex_state = 4},
[233] = {.lex_state = 1},
[234] = {.lex_state = 4},
[235] = {.lex_state = 4},
[236] = {.lex_state = 4},
[237] = {.lex_state = 4},
[238] = {.lex_state = 6},
[239] = {.lex_state = 4},
[240] = {.lex_state = 6},
[241] = {.lex_state = 1},
[242] = {.lex_state = 1},
[243] = {.lex_state = 1},
[244] = {.lex_state = 1},
[245] = {.lex_state = 1},
[246] = {.lex_state = 1},
[247] = {.lex_state = 6},
[248] = {.lex_state = 1},
[249] = {.lex_state = 1},
[250] = {.lex_state = 1},
[251] = {.lex_state = 1},
[252] = {.lex_state = 1},
[253] = {.lex_state = 1},
[254] = {.lex_state = 1},
[255] = {.lex_state = 1},
[256] = {.lex_state = 1},
[257] = {.lex_state = 1},
[258] = {.lex_state = 6},
[259] = {.lex_state = 1},
[260] = {.lex_state = 1},
[261] = {.lex_state = 1},
[262] = {.lex_state = 1},
[263] = {.lex_state = 1},
[264] = {.lex_state = 1},
[265] = {.lex_state = 6},
[266] = {.lex_state = 1},
[267] = {.lex_state = 1},
[268] = {.lex_state = 6},
[269] = {.lex_state = 6},
[270] = {.lex_state = 1},
[271] = {.lex_state = 1},
[272] = {.lex_state = 6},
[273] = {.lex_state = 6},
[274] = {.lex_state = 1},
[275] = {.lex_state = 1},
[276] = {.lex_state = 1},
[277] = {.lex_state = 1},
[278] = {.lex_state = 1},
[279] = {.lex_state = 1},
[280] = {.lex_state = 6},
[281] = {.lex_state = 1},
[282] = {.lex_state = 0},
[283] = {.lex_state = 0},
[284] = {.lex_state = 1},
[285] = {.lex_state = 24},
[286] = {.lex_state = 0},
[287] = {.lex_state = 0},
[288] = {.lex_state = 0},
[289] = {.lex_state = 0},
[290] = {.lex_state = 6},
[291] = {.lex_state = 0},
[292] = {.lex_state = 1},
[293] = {.lex_state = 0},
[294] = {.lex_state = 0},
[295] = {.lex_state = 0},
[296] = {.lex_state = 0},
[297] = {.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_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_PIPE] = ACTIONS(1),
[anon_sym_return] = ACTIONS(1),
[anon_sym_use] = ACTIONS(1),
[anon_sym_any] = ACTIONS(1),
[anon_sym_bool] = ACTIONS(1),
[anon_sym_float] = ACTIONS(1),
[anon_sym_fn] = ACTIONS(1),
[anon_sym_DASH_GT] = ACTIONS(1),
[anon_sym_int] = ACTIONS(1),
[anon_sym_map] = ACTIONS(1),
[anon_sym_num] = ACTIONS(1),
[anon_sym_str] = ACTIONS(1),
},
[1] = {
[sym_root] = STATE(288),
[sym_block] = STATE(177),
[sym_statement] = STATE(11),
[sym_expression] = STATE(61),
[sym__expression_kind] = STATE(44),
[sym_value] = STATE(44),
[sym_boolean] = STATE(56),
[sym_list] = STATE(56),
[sym_map] = STATE(56),
[sym_index] = STATE(39),
[sym_math] = STATE(44),
[sym_logic] = STATE(44),
[sym_assignment] = STATE(177),
[sym_index_assignment] = STATE(177),
[sym_if_else] = STATE(177),
[sym_if] = STATE(109),
[sym_match] = STATE(177),
[sym_while] = STATE(177),
[sym_for] = STATE(177),
[sym_return] = STATE(177),
[sym_use] = STATE(177),
[sym_function_declaration] = STATE(177),
[sym_function_call] = STATE(44),
[sym_yield] = STATE(44),
[aux_sym_root_repeat1] = STATE(11),
[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_return] = ACTIONS(31),
[anon_sym_use] = ACTIONS(33),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 25,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(35), 1,
sym_identifier,
ACTIONS(37), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 1,
sym_if,
STATE(263), 1,
aux_sym_map_repeat1,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(8), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[95] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(41), 1,
sym_identifier,
ACTIONS(44), 1,
anon_sym_async,
ACTIONS(47), 1,
anon_sym_LBRACE,
ACTIONS(50), 1,
anon_sym_LPAREN,
ACTIONS(53), 1,
sym_integer,
ACTIONS(62), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_if,
ACTIONS(68), 1,
anon_sym_match,
ACTIONS(71), 1,
anon_sym_while,
ACTIONS(74), 1,
anon_sym_for,
ACTIONS(77), 1,
anon_sym_asyncfor,
ACTIONS(80), 1,
anon_sym_return,
ACTIONS(83), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 1,
sym_if,
ACTIONS(39), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(56), 2,
sym_float,
sym_string,
ACTIONS(59), 2,
anon_sym_true,
anon_sym_false,
STATE(3), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[188] = 25,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(35), 1,
sym_identifier,
ACTIONS(86), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 1,
sym_if,
STATE(261), 1,
aux_sym_map_repeat1,
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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[283] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(88), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[375] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(90), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[467] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(92), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[559] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(94), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[651] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(96), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[743] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(98), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[835] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(100), 1,
ts_builtin_sym_end,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[927] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(102), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1019] = 24,
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_return,
ACTIONS(33), 1,
anon_sym_use,
ACTIONS(104), 1,
anon_sym_RBRACE,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1111] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1200] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1289] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1378] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1467] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(167), 1,
sym_logic_operator,
STATE(168), 1,
sym_math_operator,
ACTIONS(108), 16,
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_return,
anon_sym_use,
ACTIONS(106), 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,
[1520] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(110), 1,
anon_sym_DOT_DOT,
STATE(167), 1,
sym_logic_operator,
STATE(168), 1,
sym_math_operator,
ACTIONS(108), 16,
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_return,
anon_sym_use,
ACTIONS(106), 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,
[1575] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(116), 1,
anon_sym_COLON,
ACTIONS(126), 1,
anon_sym_DASH_GT,
STATE(167), 1,
sym_logic_operator,
STATE(168), 1,
sym_math_operator,
ACTIONS(118), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(112), 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(114), 12,
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_return,
anon_sym_use,
[1640] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(167), 1,
sym_logic_operator,
STATE(168), 1,
sym_math_operator,
ACTIONS(130), 16,
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_return,
anon_sym_use,
ACTIONS(128), 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,
[1693] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1782] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[1871] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(116), 1,
anon_sym_COLON,
STATE(167), 1,
sym_logic_operator,
STATE(168), 1,
sym_math_operator,
ACTIONS(134), 16,
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_return,
anon_sym_use,
ACTIONS(132), 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,
[1926] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 1,
sym_if,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(8), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2015] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(61), 1,
sym_expression,
STATE(109), 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(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(177), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2104] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(62), 1,
sym_expression,
STATE(109), 1,
sym_if,
STATE(184), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(143), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2192] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(140), 1,
anon_sym_EQ,
ACTIONS(142), 1,
anon_sym_LT,
STATE(32), 1,
sym_assignment_operator,
STATE(240), 1,
sym_type_definition,
ACTIONS(144), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(138), 14,
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_return,
anon_sym_use,
ACTIONS(136), 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,
[2250] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(126), 1,
anon_sym_DASH_GT,
ACTIONS(146), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(196), 1,
sym_logic_operator,
ACTIONS(118), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(112), 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(114), 12,
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_return,
anon_sym_use,
[2314] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(189), 1,
sym_math_operator,
STATE(196), 1,
sym_logic_operator,
ACTIONS(130), 16,
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_return,
anon_sym_use,
ACTIONS(128), 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,
[2366] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(146), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(196), 1,
sym_logic_operator,
ACTIONS(134), 16,
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_return,
anon_sym_use,
ACTIONS(132), 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,
[2420] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(62), 1,
sym_expression,
STATE(109), 1,
sym_if,
STATE(153), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(143), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2508] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(148), 1,
sym_identifier,
ACTIONS(150), 1,
anon_sym_async,
ACTIONS(152), 1,
anon_sym_LBRACE,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(164), 1,
anon_sym_if,
ACTIONS(166), 1,
anon_sym_match,
ACTIONS(168), 1,
anon_sym_while,
ACTIONS(170), 1,
anon_sym_for,
ACTIONS(172), 1,
anon_sym_asyncfor,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
anon_sym_use,
STATE(117), 1,
sym_index,
STATE(137), 1,
sym_expression,
STATE(232), 1,
sym_if,
STATE(248), 1,
sym_statement,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(246), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2596] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(148), 1,
sym_identifier,
ACTIONS(150), 1,
anon_sym_async,
ACTIONS(152), 1,
anon_sym_LBRACE,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(164), 1,
anon_sym_if,
ACTIONS(166), 1,
anon_sym_match,
ACTIONS(168), 1,
anon_sym_while,
ACTIONS(170), 1,
anon_sym_for,
ACTIONS(172), 1,
anon_sym_asyncfor,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
anon_sym_use,
STATE(117), 1,
sym_index,
STATE(138), 1,
sym_expression,
STATE(232), 1,
sym_if,
STATE(278), 1,
sym_statement,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(253), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2684] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(148), 1,
sym_identifier,
ACTIONS(150), 1,
anon_sym_async,
ACTIONS(152), 1,
anon_sym_LBRACE,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(164), 1,
anon_sym_if,
ACTIONS(166), 1,
anon_sym_match,
ACTIONS(168), 1,
anon_sym_while,
ACTIONS(170), 1,
anon_sym_for,
ACTIONS(172), 1,
anon_sym_asyncfor,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
anon_sym_use,
STATE(117), 1,
sym_index,
STATE(137), 1,
sym_expression,
STATE(232), 1,
sym_if,
STATE(244), 1,
sym_statement,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(246), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2772] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(148), 1,
sym_identifier,
ACTIONS(150), 1,
anon_sym_async,
ACTIONS(152), 1,
anon_sym_LBRACE,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(164), 1,
anon_sym_if,
ACTIONS(166), 1,
anon_sym_match,
ACTIONS(168), 1,
anon_sym_while,
ACTIONS(170), 1,
anon_sym_for,
ACTIONS(172), 1,
anon_sym_asyncfor,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
anon_sym_use,
STATE(117), 1,
sym_index,
STATE(137), 1,
sym_expression,
STATE(232), 1,
sym_if,
STATE(250), 1,
sym_statement,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(246), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2860] = 23,
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_return,
ACTIONS(33), 1,
anon_sym_use,
STATE(39), 1,
sym_index,
STATE(62), 1,
sym_expression,
STATE(109), 1,
sym_if,
STATE(194), 1,
sym_statement,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(143), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[2948] = 23,
ACTIONS(3), 1,
sym__comment,
ACTIONS(148), 1,
sym_identifier,
ACTIONS(150), 1,
anon_sym_async,
ACTIONS(152), 1,
anon_sym_LBRACE,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(164), 1,
anon_sym_if,
ACTIONS(166), 1,
anon_sym_match,
ACTIONS(168), 1,
anon_sym_while,
ACTIONS(170), 1,
anon_sym_for,
ACTIONS(172), 1,
anon_sym_asyncfor,
ACTIONS(174), 1,
anon_sym_return,
ACTIONS(176), 1,
anon_sym_use,
STATE(117), 1,
sym_index,
STATE(138), 1,
sym_expression,
STATE(232), 1,
sym_if,
STATE(278), 1,
sym_statement,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 6,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
STATE(253), 10,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_return,
sym_use,
sym_function_declaration,
[3036] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(140), 1,
anon_sym_EQ,
STATE(37), 1,
sym_assignment_operator,
ACTIONS(144), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(138), 15,
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_return,
anon_sym_use,
ACTIONS(136), 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,
[3089] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(184), 1,
anon_sym_RPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
STATE(85), 1,
sym_expression,
STATE(121), 1,
aux_sym__expression_list,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3172] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(200), 16,
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_return,
anon_sym_use,
ACTIONS(198), 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,
[3219] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(202), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(125), 1,
aux_sym__expression_list,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3302] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(206), 16,
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_return,
anon_sym_use,
ACTIONS(204), 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,
[3349] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(210), 16,
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_return,
anon_sym_use,
ACTIONS(208), 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,
[3396] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(212), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(127), 1,
aux_sym__expression_list,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3479] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 16,
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_return,
anon_sym_use,
ACTIONS(214), 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,
[3526] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(220), 16,
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_return,
anon_sym_use,
ACTIONS(218), 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,
[3573] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(222), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(131), 1,
aux_sym__expression_list,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3656] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(224), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(124), 1,
aux_sym__expression_list,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[3739] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(228), 16,
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_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,
[3786] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(232), 16,
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_return,
anon_sym_use,
ACTIONS(230), 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,
[3833] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(236), 16,
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_return,
anon_sym_use,
ACTIONS(234), 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,
[3880] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(240), 16,
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_return,
anon_sym_use,
ACTIONS(238), 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,
[3927] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(244), 16,
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_return,
anon_sym_use,
ACTIONS(242), 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,
[3974] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(248), 16,
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_return,
anon_sym_use,
ACTIONS(246), 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,
[4021] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(252), 16,
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_return,
anon_sym_use,
ACTIONS(250), 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,
[4068] = 21,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(254), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(128), 1,
aux_sym__expression_list,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4151] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(142), 1,
anon_sym_LT,
ACTIONS(256), 1,
anon_sym_EQ,
STATE(32), 1,
sym_assignment_operator,
STATE(240), 1,
sym_type_definition,
ACTIONS(144), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(138), 14,
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_return,
anon_sym_use,
ACTIONS(136), 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,
[4208] = 20,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(116), 1,
aux_sym_match_repeat1,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
STATE(205), 1,
sym_expression,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4288] = 20,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(64), 1,
aux_sym_match_repeat1,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
STATE(204), 1,
sym_expression,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4368] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(126), 1,
anon_sym_DASH_GT,
ACTIONS(146), 1,
anon_sym_COLON,
ACTIONS(266), 1,
anon_sym_SEMI,
STATE(189), 1,
sym_math_operator,
STATE(196), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(262), 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(264), 11,
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_return,
anon_sym_use,
[4431] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(126), 1,
anon_sym_DASH_GT,
ACTIONS(146), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(196), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(262), 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(264), 11,
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_return,
anon_sym_use,
[4492] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(126), 1,
anon_sym_DASH_GT,
ACTIONS(146), 1,
anon_sym_COLON,
STATE(189), 1,
sym_math_operator,
STATE(196), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(268), 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(270), 11,
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_return,
anon_sym_use,
[4553] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(65), 1,
aux_sym_match_repeat1,
STATE(204), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(272), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
ACTIONS(274), 7,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4615] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(278), 1,
sym_identifier,
ACTIONS(283), 1,
anon_sym_LBRACE,
ACTIONS(286), 1,
anon_sym_LPAREN,
ACTIONS(289), 1,
sym_integer,
ACTIONS(298), 1,
anon_sym_LBRACK,
STATE(65), 1,
aux_sym_match_repeat1,
STATE(204), 1,
sym_expression,
ACTIONS(292), 2,
sym_float,
sym_string,
ACTIONS(295), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
ACTIONS(276), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
ACTIONS(281), 7,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_return,
anon_sym_use,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[4677] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(301), 1,
anon_sym_DOT_DOT,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(108), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(106), 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,
[4721] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(303), 1,
anon_sym_COLON,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(134), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(132), 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,
[4765] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(108), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(106), 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,
[4807] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(303), 1,
anon_sym_COLON,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(114), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(112), 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,
[4861] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(158), 1,
sym_logic_operator,
STATE(159), 1,
sym_math_operator,
ACTIONS(130), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(128), 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,
[4903] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(194), 1,
anon_sym_COLON,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(134), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(132), 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,
[4946] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(114), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(112), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[4999] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(130), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(128), 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,
[5040] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(309), 1,
anon_sym_COMMA,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(305), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(122), 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(307), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[5094] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(240), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(238), 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,
[5130] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(244), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(242), 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,
[5166] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(156), 1,
sym_logic_operator,
STATE(157), 1,
sym_math_operator,
ACTIONS(108), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(106), 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,
[5206] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(156), 1,
sym_logic_operator,
STATE(157), 1,
sym_math_operator,
ACTIONS(130), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(128), 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,
[5246] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(236), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(234), 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,
[5282] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(210), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(208), 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,
[5318] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(200), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 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,
[5354] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(252), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(250), 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,
[5390] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(232), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(230), 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,
[5426] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(214), 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,
[5462] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(194), 1,
anon_sym_COLON,
ACTIONS(196), 1,
anon_sym_DASH_GT,
ACTIONS(315), 1,
anon_sym_COMMA,
STATE(147), 1,
sym_math_operator,
STATE(148), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(311), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(122), 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(313), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
[5516] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(206), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(204), 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,
[5552] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(220), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(218), 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,
[5588] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(317), 1,
anon_sym_COLON,
ACTIONS(319), 1,
anon_sym_DASH_GT,
STATE(156), 1,
sym_logic_operator,
STATE(157), 1,
sym_math_operator,
ACTIONS(118), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(114), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(120), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(112), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
[5640] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(317), 1,
anon_sym_COLON,
STATE(156), 1,
sym_logic_operator,
STATE(157), 1,
sym_math_operator,
ACTIONS(134), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(132), 18,
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_EQ_GT,
anon_sym_DASH_GT,
[5682] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(248), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(246), 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,
[5718] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(228), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
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,
[5754] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(321), 1,
anon_sym_DOT_DOT,
STATE(156), 1,
sym_logic_operator,
STATE(157), 1,
sym_math_operator,
ACTIONS(108), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(106), 18,
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_EQ_GT,
anon_sym_DASH_GT,
[5796] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(323), 1,
anon_sym_COLON,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(134), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(132), 17,
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_EQ_GT,
anon_sym_DASH_GT,
[5837] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(130), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(128), 18,
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_EQ_GT,
anon_sym_DASH_GT,
[5876] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(118), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(114), 3,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
ACTIONS(120), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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(112), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
[5927] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(252), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(250), 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,
[5961] = 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,
[5995] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(232), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(230), 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,
[6029] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(240), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(238), 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,
[6063] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(244), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(242), 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,
[6097] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(236), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(234), 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,
[6131] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(210), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(208), 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,
[6165] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(206), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(204), 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,
[6199] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(200), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(198), 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,
[6233] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(248), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(246), 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,
[6267] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(214), 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,
[6301] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(220), 7,
anon_sym_async,
sym_identifier,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(218), 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,
[6335] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(329), 1,
anon_sym_elseif,
ACTIONS(331), 1,
anon_sym_else,
STATE(201), 1,
sym_else,
STATE(115), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(325), 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(327), 11,
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_return,
anon_sym_use,
[6376] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(329), 1,
anon_sym_elseif,
ACTIONS(331), 1,
anon_sym_else,
STATE(178), 1,
sym_else,
STATE(108), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(333), 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(335), 11,
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_return,
anon_sym_use,
[6417] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(337), 1,
anon_sym_RPAREN,
ACTIONS(210), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(208), 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,
[6452] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 1,
anon_sym_RPAREN,
ACTIONS(210), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(208), 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,
[6487] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(341), 1,
anon_sym_RPAREN,
ACTIONS(210), 7,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(208), 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,
[6522] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(278), 1,
sym_identifier,
ACTIONS(283), 1,
anon_sym_LBRACE,
ACTIONS(286), 1,
anon_sym_LPAREN,
ACTIONS(289), 1,
sym_integer,
ACTIONS(298), 1,
anon_sym_LBRACK,
STATE(113), 1,
aux_sym_match_repeat1,
STATE(205), 1,
sym_expression,
ACTIONS(292), 2,
sym_float,
sym_string,
ACTIONS(295), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(276), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6574] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(140), 1,
anon_sym_EQ,
ACTIONS(142), 1,
anon_sym_LT,
STATE(36), 1,
sym_assignment_operator,
STATE(238), 1,
sym_type_definition,
ACTIONS(144), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(138), 3,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
ACTIONS(136), 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,
[6616] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(347), 1,
anon_sym_elseif,
STATE(115), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(343), 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(345), 12,
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_return,
anon_sym_use,
[6652] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(113), 1,
aux_sym_match_repeat1,
STATE(205), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(272), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6704] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(140), 1,
anon_sym_EQ,
STATE(35), 1,
sym_assignment_operator,
ACTIONS(144), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(138), 4,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(136), 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,
[6741] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(350), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(123), 1,
aux_sym_list_repeat1,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6791] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(352), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(135), 1,
aux_sym_list_repeat1,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6841] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(354), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(135), 1,
aux_sym_list_repeat1,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6891] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(356), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6941] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(358), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(120), 1,
aux_sym_list_repeat1,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[6991] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(360), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(135), 1,
aux_sym_list_repeat1,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7041] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(362), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7091] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(364), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7141] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(366), 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_elseif,
anon_sym_asyncfor,
ACTIONS(368), 12,
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_return,
anon_sym_use,
[7171] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(370), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7221] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(372), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7271] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(374), 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_elseif,
anon_sym_asyncfor,
ACTIONS(376), 12,
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_return,
anon_sym_use,
[7301] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(378), 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_elseif,
anon_sym_asyncfor,
ACTIONS(380), 12,
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_return,
anon_sym_use,
[7331] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(382), 1,
anon_sym_RPAREN,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7381] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(384), 1,
sym_identifier,
ACTIONS(387), 1,
anon_sym_LBRACE,
ACTIONS(390), 1,
anon_sym_LPAREN,
ACTIONS(393), 1,
anon_sym_RPAREN,
ACTIONS(395), 1,
sym_integer,
ACTIONS(404), 1,
anon_sym_LBRACK,
STATE(85), 1,
sym_expression,
STATE(132), 1,
aux_sym__expression_list,
ACTIONS(398), 2,
sym_float,
sym_string,
ACTIONS(401), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7431] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(407), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(119), 1,
aux_sym_list_repeat1,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7481] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(409), 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_elseif,
anon_sym_asyncfor,
ACTIONS(411), 12,
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_return,
anon_sym_use,
[7511] = 13,
ACTIONS(3), 1,
sym__comment,
ACTIONS(413), 1,
sym_identifier,
ACTIONS(416), 1,
anon_sym_LBRACE,
ACTIONS(419), 1,
anon_sym_LPAREN,
ACTIONS(422), 1,
sym_integer,
ACTIONS(431), 1,
anon_sym_LBRACK,
ACTIONS(434), 1,
anon_sym_RBRACK,
STATE(74), 1,
sym_expression,
STATE(135), 1,
aux_sym_list_repeat1,
ACTIONS(425), 2,
sym_float,
sym_string,
ACTIONS(428), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7561] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(268), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(122), 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,
[7604] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(262), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(122), 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,
[7647] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(436), 1,
anon_sym_SEMI,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(262), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[7692] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(438), 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(440), 11,
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_return,
anon_sym_use,
[7720] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(442), 1,
anon_sym_async,
ACTIONS(444), 1,
anon_sym_LBRACE,
STATE(134), 1,
sym_block,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[7766] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(136), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7810] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(446), 1,
sym_identifier,
STATE(40), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(111), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7854] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(262), 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(264), 11,
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_return,
anon_sym_use,
[7882] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(57), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7926] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(140), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[7970] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(66), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8014] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(71), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8058] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(72), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8102] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(60), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8146] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(448), 1,
sym_identifier,
STATE(49), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(112), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8190] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(182), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8234] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(450), 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(452), 11,
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_return,
anon_sym_use,
[8262] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(454), 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(456), 11,
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_return,
anon_sym_use,
[8290] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(458), 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(460), 11,
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_return,
anon_sym_use,
[8318] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(462), 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(464), 11,
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_return,
anon_sym_use,
[8346] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(88), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8390] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(89), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8434] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(69), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8478] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(67), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8522] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(63), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8566] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(470), 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(472), 11,
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_return,
anon_sym_use,
[8594] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(48), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8638] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(197), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8682] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(474), 1,
anon_sym_async,
ACTIONS(476), 1,
anon_sym_LBRACE,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
STATE(249), 1,
sym_block,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[8728] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(18), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8772] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(199), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8816] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(20), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8860] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(24), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8904] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(164), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[8948] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(366), 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(368), 11,
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_return,
anon_sym_use,
[8976] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(478), 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(480), 11,
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_return,
anon_sym_use,
[9004] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(181), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9048] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(59), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9092] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(179), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9136] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(73), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9180] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
ACTIONS(482), 1,
sym_identifier,
STATE(45), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(110), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9224] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(266), 1,
anon_sym_SEMI,
ACTIONS(262), 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(264), 11,
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_return,
anon_sym_use,
[9254] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(325), 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(327), 11,
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_return,
anon_sym_use,
[9282] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(484), 1,
anon_sym_async,
ACTIONS(486), 1,
anon_sym_LBRACE,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
STATE(239), 1,
sym_block,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[9328] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(30), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9372] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(488), 1,
anon_sym_async,
ACTIONS(490), 1,
anon_sym_LBRACE,
STATE(154), 1,
sym_block,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[9418] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(488), 1,
anon_sym_async,
ACTIONS(490), 1,
anon_sym_LBRACE,
STATE(171), 1,
sym_block,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[9464] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(492), 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(494), 11,
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_return,
anon_sym_use,
[9492] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(496), 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(498), 11,
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_return,
anon_sym_use,
[9520] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(500), 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(502), 11,
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_return,
anon_sym_use,
[9548] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(19), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9592] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(77), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9636] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(68), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9680] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(31), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9724] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(178), 1,
sym_identifier,
ACTIONS(180), 1,
anon_sym_LBRACE,
ACTIONS(182), 1,
anon_sym_LPAREN,
ACTIONS(186), 1,
sym_integer,
ACTIONS(192), 1,
anon_sym_LBRACK,
STATE(42), 1,
sym_expression,
ACTIONS(188), 2,
sym_float,
sym_string,
ACTIONS(190), 2,
anon_sym_true,
anon_sym_false,
STATE(82), 3,
sym_boolean,
sym_list,
sym_map,
STATE(80), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9768] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(92), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9812] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(93), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9856] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(95), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[9900] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(504), 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(506), 11,
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_return,
anon_sym_use,
[9928] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(442), 1,
anon_sym_async,
ACTIONS(444), 1,
anon_sym_LBRACE,
STATE(130), 1,
sym_block,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[9974] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(466), 1,
sym_identifier,
ACTIONS(468), 1,
anon_sym_LBRACE,
STATE(29), 1,
sym_expression,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(56), 3,
sym_boolean,
sym_list,
sym_map,
STATE(44), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10018] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(474), 1,
anon_sym_async,
ACTIONS(476), 1,
anon_sym_LBRACE,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
STATE(254), 1,
sym_block,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[10064] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(94), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10108] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(484), 1,
anon_sym_async,
ACTIONS(486), 1,
anon_sym_LBRACE,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
STATE(235), 1,
sym_block,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[10154] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(374), 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(376), 11,
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_return,
anon_sym_use,
[10182] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(508), 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(510), 11,
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_return,
anon_sym_use,
[10210] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(154), 1,
anon_sym_LPAREN,
ACTIONS(156), 1,
sym_integer,
ACTIONS(162), 1,
anon_sym_LBRACK,
ACTIONS(258), 1,
sym_identifier,
ACTIONS(260), 1,
anon_sym_LBRACE,
STATE(195), 1,
sym_expression,
ACTIONS(158), 2,
sym_float,
sym_string,
ACTIONS(160), 2,
anon_sym_true,
anon_sym_false,
STATE(96), 3,
sym_boolean,
sym_list,
sym_map,
STATE(102), 7,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
sym_yield,
[10254] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(512), 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(514), 11,
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_return,
anon_sym_use,
[10282] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(516), 1,
anon_sym_EQ_GT,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[10322] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(118), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_DASH_GT,
ACTIONS(323), 1,
anon_sym_COLON,
ACTIONS(518), 1,
anon_sym_EQ_GT,
STATE(192), 1,
sym_math_operator,
STATE(193), 1,
sym_logic_operator,
ACTIONS(124), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(120), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(122), 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,
[10362] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(522), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_asyncfor,
ACTIONS(520), 11,
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_return,
anon_sym_use,
[10387] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(530), 1,
anon_sym_fn,
ACTIONS(532), 1,
anon_sym_DASH_GT,
STATE(208), 1,
aux_sym_type_repeat1,
STATE(214), 1,
sym_type,
ACTIONS(524), 3,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_GT,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10420] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 1,
anon_sym_LBRACK,
ACTIONS(542), 1,
anon_sym_fn,
STATE(208), 1,
aux_sym_type_repeat1,
STATE(214), 1,
sym_type,
ACTIONS(534), 4,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_DASH_GT,
ACTIONS(539), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10451] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(530), 1,
anon_sym_fn,
ACTIONS(547), 1,
anon_sym_DASH_GT,
STATE(207), 1,
aux_sym_type_repeat1,
STATE(214), 1,
sym_type,
ACTIONS(545), 3,
anon_sym_COMMA,
anon_sym_RBRACK,
anon_sym_GT,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10484] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(530), 1,
anon_sym_fn,
ACTIONS(549), 1,
anon_sym_DASH_GT,
STATE(211), 1,
aux_sym_type_repeat1,
STATE(213), 1,
sym_type,
ACTIONS(524), 2,
anon_sym_RBRACK,
anon_sym_GT,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10516] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 1,
anon_sym_LBRACK,
ACTIONS(542), 1,
anon_sym_fn,
STATE(211), 1,
aux_sym_type_repeat1,
STATE(213), 1,
sym_type,
ACTIONS(534), 3,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_DASH_GT,
ACTIONS(539), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10546] = 8,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(530), 1,
anon_sym_fn,
ACTIONS(551), 1,
anon_sym_DASH_GT,
STATE(210), 1,
aux_sym_type_repeat1,
STATE(213), 1,
sym_type,
ACTIONS(545), 2,
anon_sym_RBRACK,
anon_sym_GT,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10578] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(553), 1,
anon_sym_COMMA,
ACTIONS(555), 12,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10599] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(557), 1,
anon_sym_COMMA,
ACTIONS(555), 12,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10620] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(560), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10639] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(534), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10658] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(562), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10677] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(545), 13,
anon_sym_COMMA,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_GT,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_fn,
anon_sym_DASH_GT,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10696] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(464), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(462), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
[10716] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(368), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(366), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
[10736] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(376), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(374), 8,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
[10756] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(530), 1,
anon_sym_fn,
STATE(215), 1,
sym_type,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10778] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(564), 1,
anon_sym_fn,
STATE(290), 1,
sym_type,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10800] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(530), 1,
anon_sym_fn,
STATE(217), 1,
sym_type,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10822] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(564), 1,
anon_sym_fn,
STATE(286), 1,
sym_type,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10844] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(564), 1,
anon_sym_fn,
STATE(215), 1,
sym_type,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10866] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(566), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(393), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
[10884] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 1,
anon_sym_LBRACK,
ACTIONS(564), 1,
anon_sym_fn,
STATE(217), 1,
sym_type,
ACTIONS(528), 7,
anon_sym_any,
anon_sym_bool,
anon_sym_float,
anon_sym_int,
anon_sym_map,
anon_sym_num,
anon_sym_str,
[10906] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(568), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(434), 6,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
[10924] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(570), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(572), 5,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
[10941] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 1,
sym_identifier,
ACTIONS(574), 1,
anon_sym_elseif,
ACTIONS(576), 1,
anon_sym_else,
STATE(242), 1,
sym_else,
STATE(234), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(325), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[10966] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 1,
sym_identifier,
ACTIONS(574), 1,
anon_sym_elseif,
ACTIONS(576), 1,
anon_sym_else,
STATE(251), 1,
sym_else,
STATE(231), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(333), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[10991] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(578), 4,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
ACTIONS(580), 5,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
[11008] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(582), 1,
anon_sym_elseif,
ACTIONS(345), 2,
sym_identifier,
anon_sym_else,
STATE(234), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(343), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[11028] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(380), 2,
sym_identifier,
anon_sym_else,
ACTIONS(378), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[11042] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(376), 2,
sym_identifier,
anon_sym_else,
ACTIONS(374), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[11056] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(368), 2,
sym_identifier,
anon_sym_else,
ACTIONS(366), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[11070] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(585), 1,
anon_sym_PIPE,
STATE(33), 1,
sym_assignment_operator,
STATE(241), 1,
sym_function,
ACTIONS(144), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[11088] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(411), 2,
sym_identifier,
anon_sym_else,
ACTIONS(409), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[11102] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(587), 1,
anon_sym_PIPE,
STATE(27), 1,
sym_assignment_operator,
STATE(139), 1,
sym_function,
ACTIONS(144), 3,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[11120] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(438), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11130] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(508), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11140] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(512), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11150] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(504), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11160] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(492), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11170] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(262), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11180] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(589), 4,
anon_sym_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_PIPE,
[11190] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(496), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11200] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(478), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11210] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(454), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11220] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(325), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11230] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(470), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11240] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(436), 1,
anon_sym_SEMI,
ACTIONS(262), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
[11252] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(458), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11262] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(500), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11272] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(450), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[11282] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(474), 1,
anon_sym_async,
ACTIONS(476), 1,
anon_sym_LBRACE,
STATE(252), 1,
sym_block,
[11295] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(591), 1,
sym_identifier,
ACTIONS(593), 1,
anon_sym_PIPE,
STATE(272), 1,
aux_sym_identifier_list_repeat1,
[11308] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 1,
anon_sym_async,
ACTIONS(490), 1,
anon_sym_LBRACE,
STATE(155), 1,
sym_block,
[11321] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(595), 1,
sym_identifier,
ACTIONS(597), 1,
anon_sym_RBRACE,
STATE(267), 1,
aux_sym_map_repeat1,
[11334] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(595), 1,
sym_identifier,
ACTIONS(599), 1,
anon_sym_RBRACE,
STATE(267), 1,
aux_sym_map_repeat1,
[11347] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(595), 1,
sym_identifier,
ACTIONS(601), 1,
anon_sym_RBRACE,
STATE(260), 1,
aux_sym_map_repeat1,
[11360] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(595), 1,
sym_identifier,
ACTIONS(603), 1,
anon_sym_RBRACE,
STATE(267), 1,
aux_sym_map_repeat1,
[11373] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(37), 1,
anon_sym_RBRACE,
ACTIONS(595), 1,
sym_identifier,
STATE(263), 1,
aux_sym_map_repeat1,
[11386] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(591), 1,
sym_identifier,
ACTIONS(605), 1,
anon_sym_PIPE,
STATE(272), 1,
aux_sym_identifier_list_repeat1,
[11399] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 1,
anon_sym_async,
ACTIONS(490), 1,
anon_sym_LBRACE,
STATE(161), 1,
sym_block,
[11412] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(607), 1,
sym_identifier,
ACTIONS(610), 1,
anon_sym_RBRACE,
STATE(267), 1,
aux_sym_map_repeat1,
[11425] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(614), 1,
anon_sym_COMMA,
ACTIONS(612), 2,
sym_identifier,
anon_sym_PIPE,
[11436] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(591), 1,
sym_identifier,
ACTIONS(616), 1,
anon_sym_PIPE,
STATE(265), 1,
aux_sym_identifier_list_repeat1,
[11449] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(474), 1,
anon_sym_async,
ACTIONS(476), 1,
anon_sym_LBRACE,
STATE(243), 1,
sym_block,
[11462] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(474), 1,
anon_sym_async,
ACTIONS(476), 1,
anon_sym_LBRACE,
STATE(256), 1,
sym_block,
[11475] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(618), 1,
sym_identifier,
ACTIONS(621), 1,
anon_sym_PIPE,
STATE(272), 1,
aux_sym_identifier_list_repeat1,
[11488] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(591), 1,
sym_identifier,
ACTIONS(623), 1,
anon_sym_PIPE,
STATE(258), 1,
aux_sym_identifier_list_repeat1,
[11501] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 1,
anon_sym_async,
ACTIONS(490), 1,
anon_sym_LBRACE,
STATE(152), 1,
sym_block,
[11514] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(474), 1,
anon_sym_async,
ACTIONS(476), 1,
anon_sym_LBRACE,
STATE(219), 1,
sym_block,
[11527] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(86), 1,
anon_sym_RBRACE,
ACTIONS(595), 1,
sym_identifier,
STATE(261), 1,
aux_sym_map_repeat1,
[11540] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(488), 1,
anon_sym_async,
ACTIONS(490), 1,
anon_sym_LBRACE,
STATE(203), 1,
sym_block,
[11553] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(627), 1,
anon_sym_COMMA,
ACTIONS(625), 2,
anon_sym_RBRACE,
sym_identifier,
[11564] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(629), 2,
anon_sym_RBRACE,
sym_identifier,
[11572] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(621), 2,
sym_identifier,
anon_sym_PIPE,
[11580] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(631), 1,
anon_sym_in,
[11587] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(633), 1,
anon_sym_LBRACE,
[11594] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(635), 1,
sym_string,
[11601] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(637), 1,
sym_identifier,
[11608] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(639), 1,
anon_sym_EQ,
[11615] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(641), 1,
anon_sym_RBRACK,
[11622] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(643), 1,
anon_sym_LPAREN,
[11629] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(645), 1,
ts_builtin_sym_end,
[11636] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(647), 1,
sym_string,
[11643] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(649), 1,
anon_sym_GT,
[11650] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(651), 1,
anon_sym_LBRACE,
[11657] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(653), 1,
anon_sym_in,
[11664] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(655), 1,
anon_sym_LPAREN,
[11671] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(657), 1,
anon_sym_LBRACE,
[11678] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(659), 1,
anon_sym_LPAREN,
[11685] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(661), 1,
anon_sym_LBRACE,
[11692] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(663), 1,
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 95,
[SMALL_STATE(4)] = 188,
[SMALL_STATE(5)] = 283,
[SMALL_STATE(6)] = 375,
[SMALL_STATE(7)] = 467,
[SMALL_STATE(8)] = 559,
[SMALL_STATE(9)] = 651,
[SMALL_STATE(10)] = 743,
[SMALL_STATE(11)] = 835,
[SMALL_STATE(12)] = 927,
[SMALL_STATE(13)] = 1019,
[SMALL_STATE(14)] = 1111,
[SMALL_STATE(15)] = 1200,
[SMALL_STATE(16)] = 1289,
[SMALL_STATE(17)] = 1378,
[SMALL_STATE(18)] = 1467,
[SMALL_STATE(19)] = 1520,
[SMALL_STATE(20)] = 1575,
[SMALL_STATE(21)] = 1640,
[SMALL_STATE(22)] = 1693,
[SMALL_STATE(23)] = 1782,
[SMALL_STATE(24)] = 1871,
[SMALL_STATE(25)] = 1926,
[SMALL_STATE(26)] = 2015,
[SMALL_STATE(27)] = 2104,
[SMALL_STATE(28)] = 2192,
[SMALL_STATE(29)] = 2250,
[SMALL_STATE(30)] = 2314,
[SMALL_STATE(31)] = 2366,
[SMALL_STATE(32)] = 2420,
[SMALL_STATE(33)] = 2508,
[SMALL_STATE(34)] = 2596,
[SMALL_STATE(35)] = 2684,
[SMALL_STATE(36)] = 2772,
[SMALL_STATE(37)] = 2860,
[SMALL_STATE(38)] = 2948,
[SMALL_STATE(39)] = 3036,
[SMALL_STATE(40)] = 3089,
[SMALL_STATE(41)] = 3172,
[SMALL_STATE(42)] = 3219,
[SMALL_STATE(43)] = 3302,
[SMALL_STATE(44)] = 3349,
[SMALL_STATE(45)] = 3396,
[SMALL_STATE(46)] = 3479,
[SMALL_STATE(47)] = 3526,
[SMALL_STATE(48)] = 3573,
[SMALL_STATE(49)] = 3656,
[SMALL_STATE(50)] = 3739,
[SMALL_STATE(51)] = 3786,
[SMALL_STATE(52)] = 3833,
[SMALL_STATE(53)] = 3880,
[SMALL_STATE(54)] = 3927,
[SMALL_STATE(55)] = 3974,
[SMALL_STATE(56)] = 4021,
[SMALL_STATE(57)] = 4068,
[SMALL_STATE(58)] = 4151,
[SMALL_STATE(59)] = 4208,
[SMALL_STATE(60)] = 4288,
[SMALL_STATE(61)] = 4368,
[SMALL_STATE(62)] = 4431,
[SMALL_STATE(63)] = 4492,
[SMALL_STATE(64)] = 4553,
[SMALL_STATE(65)] = 4615,
[SMALL_STATE(66)] = 4677,
[SMALL_STATE(67)] = 4721,
[SMALL_STATE(68)] = 4765,
[SMALL_STATE(69)] = 4807,
[SMALL_STATE(70)] = 4861,
[SMALL_STATE(71)] = 4903,
[SMALL_STATE(72)] = 4946,
[SMALL_STATE(73)] = 4999,
[SMALL_STATE(74)] = 5040,
[SMALL_STATE(75)] = 5094,
[SMALL_STATE(76)] = 5130,
[SMALL_STATE(77)] = 5166,
[SMALL_STATE(78)] = 5206,
[SMALL_STATE(79)] = 5246,
[SMALL_STATE(80)] = 5282,
[SMALL_STATE(81)] = 5318,
[SMALL_STATE(82)] = 5354,
[SMALL_STATE(83)] = 5390,
[SMALL_STATE(84)] = 5426,
[SMALL_STATE(85)] = 5462,
[SMALL_STATE(86)] = 5516,
[SMALL_STATE(87)] = 5552,
[SMALL_STATE(88)] = 5588,
[SMALL_STATE(89)] = 5640,
[SMALL_STATE(90)] = 5682,
[SMALL_STATE(91)] = 5718,
[SMALL_STATE(92)] = 5754,
[SMALL_STATE(93)] = 5796,
[SMALL_STATE(94)] = 5837,
[SMALL_STATE(95)] = 5876,
[SMALL_STATE(96)] = 5927,
[SMALL_STATE(97)] = 5961,
[SMALL_STATE(98)] = 5995,
[SMALL_STATE(99)] = 6029,
[SMALL_STATE(100)] = 6063,
[SMALL_STATE(101)] = 6097,
[SMALL_STATE(102)] = 6131,
[SMALL_STATE(103)] = 6165,
[SMALL_STATE(104)] = 6199,
[SMALL_STATE(105)] = 6233,
[SMALL_STATE(106)] = 6267,
[SMALL_STATE(107)] = 6301,
[SMALL_STATE(108)] = 6335,
[SMALL_STATE(109)] = 6376,
[SMALL_STATE(110)] = 6417,
[SMALL_STATE(111)] = 6452,
[SMALL_STATE(112)] = 6487,
[SMALL_STATE(113)] = 6522,
[SMALL_STATE(114)] = 6574,
[SMALL_STATE(115)] = 6616,
[SMALL_STATE(116)] = 6652,
[SMALL_STATE(117)] = 6704,
[SMALL_STATE(118)] = 6741,
[SMALL_STATE(119)] = 6791,
[SMALL_STATE(120)] = 6841,
[SMALL_STATE(121)] = 6891,
[SMALL_STATE(122)] = 6941,
[SMALL_STATE(123)] = 6991,
[SMALL_STATE(124)] = 7041,
[SMALL_STATE(125)] = 7091,
[SMALL_STATE(126)] = 7141,
[SMALL_STATE(127)] = 7171,
[SMALL_STATE(128)] = 7221,
[SMALL_STATE(129)] = 7271,
[SMALL_STATE(130)] = 7301,
[SMALL_STATE(131)] = 7331,
[SMALL_STATE(132)] = 7381,
[SMALL_STATE(133)] = 7431,
[SMALL_STATE(134)] = 7481,
[SMALL_STATE(135)] = 7511,
[SMALL_STATE(136)] = 7561,
[SMALL_STATE(137)] = 7604,
[SMALL_STATE(138)] = 7647,
[SMALL_STATE(139)] = 7692,
[SMALL_STATE(140)] = 7720,
[SMALL_STATE(141)] = 7766,
[SMALL_STATE(142)] = 7810,
[SMALL_STATE(143)] = 7854,
[SMALL_STATE(144)] = 7882,
[SMALL_STATE(145)] = 7926,
[SMALL_STATE(146)] = 7970,
[SMALL_STATE(147)] = 8014,
[SMALL_STATE(148)] = 8058,
[SMALL_STATE(149)] = 8102,
[SMALL_STATE(150)] = 8146,
[SMALL_STATE(151)] = 8190,
[SMALL_STATE(152)] = 8234,
[SMALL_STATE(153)] = 8262,
[SMALL_STATE(154)] = 8290,
[SMALL_STATE(155)] = 8318,
[SMALL_STATE(156)] = 8346,
[SMALL_STATE(157)] = 8390,
[SMALL_STATE(158)] = 8434,
[SMALL_STATE(159)] = 8478,
[SMALL_STATE(160)] = 8522,
[SMALL_STATE(161)] = 8566,
[SMALL_STATE(162)] = 8594,
[SMALL_STATE(163)] = 8638,
[SMALL_STATE(164)] = 8682,
[SMALL_STATE(165)] = 8728,
[SMALL_STATE(166)] = 8772,
[SMALL_STATE(167)] = 8816,
[SMALL_STATE(168)] = 8860,
[SMALL_STATE(169)] = 8904,
[SMALL_STATE(170)] = 8948,
[SMALL_STATE(171)] = 8976,
[SMALL_STATE(172)] = 9004,
[SMALL_STATE(173)] = 9048,
[SMALL_STATE(174)] = 9092,
[SMALL_STATE(175)] = 9136,
[SMALL_STATE(176)] = 9180,
[SMALL_STATE(177)] = 9224,
[SMALL_STATE(178)] = 9254,
[SMALL_STATE(179)] = 9282,
[SMALL_STATE(180)] = 9328,
[SMALL_STATE(181)] = 9372,
[SMALL_STATE(182)] = 9418,
[SMALL_STATE(183)] = 9464,
[SMALL_STATE(184)] = 9492,
[SMALL_STATE(185)] = 9520,
[SMALL_STATE(186)] = 9548,
[SMALL_STATE(187)] = 9592,
[SMALL_STATE(188)] = 9636,
[SMALL_STATE(189)] = 9680,
[SMALL_STATE(190)] = 9724,
[SMALL_STATE(191)] = 9768,
[SMALL_STATE(192)] = 9812,
[SMALL_STATE(193)] = 9856,
[SMALL_STATE(194)] = 9900,
[SMALL_STATE(195)] = 9928,
[SMALL_STATE(196)] = 9974,
[SMALL_STATE(197)] = 10018,
[SMALL_STATE(198)] = 10064,
[SMALL_STATE(199)] = 10108,
[SMALL_STATE(200)] = 10154,
[SMALL_STATE(201)] = 10182,
[SMALL_STATE(202)] = 10210,
[SMALL_STATE(203)] = 10254,
[SMALL_STATE(204)] = 10282,
[SMALL_STATE(205)] = 10322,
[SMALL_STATE(206)] = 10362,
[SMALL_STATE(207)] = 10387,
[SMALL_STATE(208)] = 10420,
[SMALL_STATE(209)] = 10451,
[SMALL_STATE(210)] = 10484,
[SMALL_STATE(211)] = 10516,
[SMALL_STATE(212)] = 10546,
[SMALL_STATE(213)] = 10578,
[SMALL_STATE(214)] = 10599,
[SMALL_STATE(215)] = 10620,
[SMALL_STATE(216)] = 10639,
[SMALL_STATE(217)] = 10658,
[SMALL_STATE(218)] = 10677,
[SMALL_STATE(219)] = 10696,
[SMALL_STATE(220)] = 10716,
[SMALL_STATE(221)] = 10736,
[SMALL_STATE(222)] = 10756,
[SMALL_STATE(223)] = 10778,
[SMALL_STATE(224)] = 10800,
[SMALL_STATE(225)] = 10822,
[SMALL_STATE(226)] = 10844,
[SMALL_STATE(227)] = 10866,
[SMALL_STATE(228)] = 10884,
[SMALL_STATE(229)] = 10906,
[SMALL_STATE(230)] = 10924,
[SMALL_STATE(231)] = 10941,
[SMALL_STATE(232)] = 10966,
[SMALL_STATE(233)] = 10991,
[SMALL_STATE(234)] = 11008,
[SMALL_STATE(235)] = 11028,
[SMALL_STATE(236)] = 11042,
[SMALL_STATE(237)] = 11056,
[SMALL_STATE(238)] = 11070,
[SMALL_STATE(239)] = 11088,
[SMALL_STATE(240)] = 11102,
[SMALL_STATE(241)] = 11120,
[SMALL_STATE(242)] = 11130,
[SMALL_STATE(243)] = 11140,
[SMALL_STATE(244)] = 11150,
[SMALL_STATE(245)] = 11160,
[SMALL_STATE(246)] = 11170,
[SMALL_STATE(247)] = 11180,
[SMALL_STATE(248)] = 11190,
[SMALL_STATE(249)] = 11200,
[SMALL_STATE(250)] = 11210,
[SMALL_STATE(251)] = 11220,
[SMALL_STATE(252)] = 11230,
[SMALL_STATE(253)] = 11240,
[SMALL_STATE(254)] = 11252,
[SMALL_STATE(255)] = 11262,
[SMALL_STATE(256)] = 11272,
[SMALL_STATE(257)] = 11282,
[SMALL_STATE(258)] = 11295,
[SMALL_STATE(259)] = 11308,
[SMALL_STATE(260)] = 11321,
[SMALL_STATE(261)] = 11334,
[SMALL_STATE(262)] = 11347,
[SMALL_STATE(263)] = 11360,
[SMALL_STATE(264)] = 11373,
[SMALL_STATE(265)] = 11386,
[SMALL_STATE(266)] = 11399,
[SMALL_STATE(267)] = 11412,
[SMALL_STATE(268)] = 11425,
[SMALL_STATE(269)] = 11436,
[SMALL_STATE(270)] = 11449,
[SMALL_STATE(271)] = 11462,
[SMALL_STATE(272)] = 11475,
[SMALL_STATE(273)] = 11488,
[SMALL_STATE(274)] = 11501,
[SMALL_STATE(275)] = 11514,
[SMALL_STATE(276)] = 11527,
[SMALL_STATE(277)] = 11540,
[SMALL_STATE(278)] = 11553,
[SMALL_STATE(279)] = 11564,
[SMALL_STATE(280)] = 11572,
[SMALL_STATE(281)] = 11580,
[SMALL_STATE(282)] = 11587,
[SMALL_STATE(283)] = 11594,
[SMALL_STATE(284)] = 11601,
[SMALL_STATE(285)] = 11608,
[SMALL_STATE(286)] = 11615,
[SMALL_STATE(287)] = 11622,
[SMALL_STATE(288)] = 11629,
[SMALL_STATE(289)] = 11636,
[SMALL_STATE(290)] = 11643,
[SMALL_STATE(291)] = 11650,
[SMALL_STATE(292)] = 11657,
[SMALL_STATE(293)] = 11664,
[SMALL_STATE(294)] = 11671,
[SMALL_STATE(295)] = 11678,
[SMALL_STATE(296)] = 11685,
[SMALL_STATE(297)] = 11692,
};
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(28),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
[37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[39] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[41] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(28),
[44] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(282),
[47] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(2),
[50] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(142),
[53] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(56),
[56] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(56),
[59] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(41),
[62] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(122),
[65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(145),
[68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(149),
[71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(151),
[74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(284),
[77] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(284),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(160),
[83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(283),
[86] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[88] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[90] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221),
[92] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[94] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[96] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[98] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236),
[106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180),
[112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230),
[120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233),
[126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287),
[128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206),
[142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223),
[144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114),
[150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96),
[158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
[162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174),
[166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173),
[168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169),
[170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141),
[176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289),
[178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82),
[188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81),
[192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4),
[220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4),
[222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 6),
[228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 6),
[230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 5),
[248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 5),
[250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38),
[258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102),
[260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276),
[262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return, 2),
[270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return, 2),
[272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(102),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(276),
[286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(150),
[289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(96),
[292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(96),
[295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(104),
[298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(118),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229),
[311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227),
[317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277),
[333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(202),
[350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(80),
[387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(262),
[390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(176),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(82),
[398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(82),
[401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(81),
[404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(133),
[407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(80),
[416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(262),
[419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(176),
[422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(82),
[425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(82),
[428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(81),
[431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(133),
[434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3),
[440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112),
[450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4),
[452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4),
[454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264),
[470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3),
[472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3),
[474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110),
[484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25),
[492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use, 2),
[494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use, 2),
[496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 4),
[498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 4),
[500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275),
[520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2),
[526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2),
[536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(225),
[539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(218),
[542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 2), SHIFT_REPEAT(209),
[545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1),
[547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226),
[553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1),
[557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_repeat1, 1), SHIFT_REPEAT(216),
[560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3),
[562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 4),
[564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166),
[576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270),
[578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(166),
[585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268),
[593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271),
[595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285),
[597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274),
[607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(285),
[610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266),
[618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(268),
[621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257),
[625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279),
[629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[645] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162),
[657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_dust(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif