#include "tree_sitter/parser.h"
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 15
#define STATE_COUNT 306
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 90
#define ALIAS_COUNT 0
#define TOKEN_COUNT 61
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 19
#define MAX_ALIAS_SEQUENCE_LENGTH 10
#define MAX_RESERVED_WORD_SET_SIZE 0
#define PRODUCTION_ID_COUNT 31
#define SUPERTYPE_COUNT 0
enum ts_symbol_identifiers {
anon_sym_fn = 1,
anon_sym_LPAREN = 2,
anon_sym_COMMA = 3,
anon_sym_RPAREN = 4,
anon_sym_DASH_GT = 5,
anon_sym_mut = 6,
anon_sym_COLON = 7,
anon_sym_LBRACE = 8,
anon_sym_RBRACE = 9,
anon_sym_let = 10,
anon_sym_EQ = 11,
anon_sym_SEMI = 12,
anon_sym_return = 13,
anon_sym_loop = 14,
anon_sym_while = 15,
anon_sym_for = 16,
anon_sym_break = 17,
anon_sym_continue = 18,
anon_sym_if = 19,
anon_sym_else = 20,
anon_sym_BANG = 21,
anon_sym_DASH = 22,
anon_sym_PLUS = 23,
anon_sym_STAR = 24,
anon_sym_SLASH = 25,
anon_sym_PERCENT = 26,
anon_sym_STAR_STAR = 27,
anon_sym_EQ_EQ = 28,
anon_sym_BANG_EQ = 29,
anon_sym_LT = 30,
anon_sym_GT = 31,
anon_sym_LT_EQ = 32,
anon_sym_GT_EQ = 33,
anon_sym_LT_LT = 34,
anon_sym_GT_GT = 35,
anon_sym_PIPE = 36,
anon_sym_CARET = 37,
anon_sym_AMP = 38,
anon_sym_AMP_AMP = 39,
anon_sym_PIPE_PIPE = 40,
anon_sym_PLUS_EQ = 41,
anon_sym_DASH_EQ = 42,
anon_sym_STAR_EQ = 43,
anon_sym_SLASH_EQ = 44,
anon_sym_PERCENT_EQ = 45,
anon_sym_STAR_STAR_EQ = 46,
anon_sym_LT_LT_EQ = 47,
anon_sym_GT_GT_EQ = 48,
anon_sym_PIPE_EQ = 49,
anon_sym_AMP_EQ = 50,
anon_sym_CARET_EQ = 51,
anon_sym_as = 52,
sym_ident = 53,
sym_int = 54,
sym_float = 55,
sym_char = 56,
anon_sym_true = 57,
anon_sym_false = 58,
sym_line_comment = 59,
sym_block_comment = 60,
sym_program = 61,
sym__item = 62,
sym_function_definition = 63,
sym_parameter = 64,
sym_block = 65,
sym_type = 66,
sym__statement = 67,
sym_let_stmt = 68,
sym_return_stmt = 69,
sym_loop_stmt = 70,
sym_while_stmt = 71,
sym_for_stmt = 72,
sym_break_stmt = 73,
sym_continue_stmt = 74,
sym_expr_stmt = 75,
sym__expression = 76,
sym__expr_with_block = 77,
sym_if_expr = 78,
sym__expr_without_block = 79,
sym_prefix_expr = 80,
sym_infix_expr = 81,
sym_assign_expr = 82,
sym_call_expr = 83,
sym_cast_expr = 84,
sym_bool = 85,
aux_sym_program_repeat1 = 86,
aux_sym_program_repeat2 = 87,
aux_sym_function_definition_repeat1 = 88,
aux_sym_call_expr_repeat1 = 89,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[anon_sym_fn] = "fn",
[anon_sym_LPAREN] = "(",
[anon_sym_COMMA] = ",",
[anon_sym_RPAREN] = ")",
[anon_sym_DASH_GT] = "->",
[anon_sym_mut] = "mut",
[anon_sym_COLON] = ":",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_let] = "let",
[anon_sym_EQ] = "=",
[anon_sym_SEMI] = ";",
[anon_sym_return] = "return",
[anon_sym_loop] = "loop",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_break] = "break",
[anon_sym_continue] = "continue",
[anon_sym_if] = "if",
[anon_sym_else] = "else",
[anon_sym_BANG] = "!",
[anon_sym_DASH] = "-",
[anon_sym_PLUS] = "+",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_STAR_STAR] = "**",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_LT] = "<",
[anon_sym_GT] = ">",
[anon_sym_LT_EQ] = "<=",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_LT] = "<<",
[anon_sym_GT_GT] = ">>",
[anon_sym_PIPE] = "|",
[anon_sym_CARET] = "^",
[anon_sym_AMP] = "&",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_STAR_EQ] = "*=",
[anon_sym_SLASH_EQ] = "/=",
[anon_sym_PERCENT_EQ] = "%=",
[anon_sym_STAR_STAR_EQ] = "**=",
[anon_sym_LT_LT_EQ] = "<<=",
[anon_sym_GT_GT_EQ] = ">>=",
[anon_sym_PIPE_EQ] = "|=",
[anon_sym_AMP_EQ] = "&=",
[anon_sym_CARET_EQ] = "^=",
[anon_sym_as] = "as",
[sym_ident] = "ident",
[sym_int] = "int",
[sym_float] = "float",
[sym_char] = "char",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[sym_line_comment] = "line_comment",
[sym_block_comment] = "block_comment",
[sym_program] = "program",
[sym__item] = "_item",
[sym_function_definition] = "function_definition",
[sym_parameter] = "parameter",
[sym_block] = "block",
[sym_type] = "type",
[sym__statement] = "_statement",
[sym_let_stmt] = "let_stmt",
[sym_return_stmt] = "return_stmt",
[sym_loop_stmt] = "loop_stmt",
[sym_while_stmt] = "while_stmt",
[sym_for_stmt] = "for_stmt",
[sym_break_stmt] = "break_stmt",
[sym_continue_stmt] = "continue_stmt",
[sym_expr_stmt] = "expr_stmt",
[sym__expression] = "_expression",
[sym__expr_with_block] = "_expr_with_block",
[sym_if_expr] = "if_expr",
[sym__expr_without_block] = "_expr_without_block",
[sym_prefix_expr] = "prefix_expr",
[sym_infix_expr] = "infix_expr",
[sym_assign_expr] = "assign_expr",
[sym_call_expr] = "call_expr",
[sym_cast_expr] = "cast_expr",
[sym_bool] = "bool",
[aux_sym_program_repeat1] = "program_repeat1",
[aux_sym_program_repeat2] = "program_repeat2",
[aux_sym_function_definition_repeat1] = "function_definition_repeat1",
[aux_sym_call_expr_repeat1] = "call_expr_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[anon_sym_fn] = anon_sym_fn,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
[anon_sym_mut] = anon_sym_mut,
[anon_sym_COLON] = anon_sym_COLON,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_let] = anon_sym_let,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_return] = anon_sym_return,
[anon_sym_loop] = anon_sym_loop,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[anon_sym_break] = anon_sym_break,
[anon_sym_continue] = anon_sym_continue,
[anon_sym_if] = anon_sym_if,
[anon_sym_else] = anon_sym_else,
[anon_sym_BANG] = anon_sym_BANG,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_STAR_STAR] = anon_sym_STAR_STAR,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_LT] = anon_sym_LT_LT,
[anon_sym_GT_GT] = anon_sym_GT_GT,
[anon_sym_PIPE] = anon_sym_PIPE,
[anon_sym_CARET] = anon_sym_CARET,
[anon_sym_AMP] = anon_sym_AMP,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_STAR_EQ] = anon_sym_STAR_EQ,
[anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ,
[anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ,
[anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ,
[anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ,
[anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ,
[anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ,
[anon_sym_AMP_EQ] = anon_sym_AMP_EQ,
[anon_sym_CARET_EQ] = anon_sym_CARET_EQ,
[anon_sym_as] = anon_sym_as,
[sym_ident] = sym_ident,
[sym_int] = sym_int,
[sym_float] = sym_float,
[sym_char] = sym_char,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[sym_line_comment] = sym_line_comment,
[sym_block_comment] = sym_block_comment,
[sym_program] = sym_program,
[sym__item] = sym__item,
[sym_function_definition] = sym_function_definition,
[sym_parameter] = sym_parameter,
[sym_block] = sym_block,
[sym_type] = sym_type,
[sym__statement] = sym__statement,
[sym_let_stmt] = sym_let_stmt,
[sym_return_stmt] = sym_return_stmt,
[sym_loop_stmt] = sym_loop_stmt,
[sym_while_stmt] = sym_while_stmt,
[sym_for_stmt] = sym_for_stmt,
[sym_break_stmt] = sym_break_stmt,
[sym_continue_stmt] = sym_continue_stmt,
[sym_expr_stmt] = sym_expr_stmt,
[sym__expression] = sym__expression,
[sym__expr_with_block] = sym__expr_with_block,
[sym_if_expr] = sym_if_expr,
[sym__expr_without_block] = sym__expr_without_block,
[sym_prefix_expr] = sym_prefix_expr,
[sym_infix_expr] = sym_infix_expr,
[sym_assign_expr] = sym_assign_expr,
[sym_call_expr] = sym_call_expr,
[sym_cast_expr] = sym_cast_expr,
[sym_bool] = sym_bool,
[aux_sym_program_repeat1] = aux_sym_program_repeat1,
[aux_sym_program_repeat2] = aux_sym_program_repeat2,
[aux_sym_function_definition_repeat1] = aux_sym_function_definition_repeat1,
[aux_sym_call_expr_repeat1] = aux_sym_call_expr_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[anon_sym_fn] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
[anon_sym_mut] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_let] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_return] = {
.visible = true,
.named = false,
},
[anon_sym_loop] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_break] = {
.visible = true,
.named = false,
},
[anon_sym_continue] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_BANG] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.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_STAR_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT_GT] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_CARET] = {
.visible = true,
.named = false,
},
[anon_sym_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_STAR_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_STAR_STAR_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_GT_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_CARET_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_as] = {
.visible = true,
.named = false,
},
[sym_ident] = {
.visible = true,
.named = true,
},
[sym_int] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_char] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[sym_line_comment] = {
.visible = true,
.named = true,
},
[sym_block_comment] = {
.visible = true,
.named = true,
},
[sym_program] = {
.visible = true,
.named = true,
},
[sym__item] = {
.visible = false,
.named = true,
},
[sym_function_definition] = {
.visible = true,
.named = true,
},
[sym_parameter] = {
.visible = true,
.named = true,
},
[sym_block] = {
.visible = true,
.named = true,
},
[sym_type] = {
.visible = true,
.named = true,
},
[sym__statement] = {
.visible = false,
.named = true,
},
[sym_let_stmt] = {
.visible = true,
.named = true,
},
[sym_return_stmt] = {
.visible = true,
.named = true,
},
[sym_loop_stmt] = {
.visible = true,
.named = true,
},
[sym_while_stmt] = {
.visible = true,
.named = true,
},
[sym_for_stmt] = {
.visible = true,
.named = true,
},
[sym_break_stmt] = {
.visible = true,
.named = true,
},
[sym_continue_stmt] = {
.visible = true,
.named = true,
},
[sym_expr_stmt] = {
.visible = true,
.named = true,
},
[sym__expression] = {
.visible = false,
.named = true,
},
[sym__expr_with_block] = {
.visible = false,
.named = true,
},
[sym_if_expr] = {
.visible = true,
.named = true,
},
[sym__expr_without_block] = {
.visible = false,
.named = true,
},
[sym_prefix_expr] = {
.visible = true,
.named = true,
},
[sym_infix_expr] = {
.visible = true,
.named = true,
},
[sym_assign_expr] = {
.visible = true,
.named = true,
},
[sym_call_expr] = {
.visible = true,
.named = true,
},
[sym_cast_expr] = {
.visible = true,
.named = true,
},
[sym_bool] = {
.visible = true,
.named = true,
},
[aux_sym_program_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_program_repeat2] = {
.visible = false,
.named = false,
},
[aux_sym_function_definition_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_call_expr_repeat1] = {
.visible = false,
.named = false,
},
};
enum ts_field_identifiers {
field_args = 1,
field_assignee = 2,
field_block = 3,
field_body = 4,
field_cond = 5,
field_else_block = 6,
field_expr = 7,
field_func = 8,
field_initializer = 9,
field_lhs = 10,
field_name = 11,
field_op = 12,
field_params = 13,
field_return_type = 14,
field_rhs = 15,
field_stmts = 16,
field_then_block = 17,
field_type = 18,
field_update = 19,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_args] = "args",
[field_assignee] = "assignee",
[field_block] = "block",
[field_body] = "body",
[field_cond] = "cond",
[field_else_block] = "else_block",
[field_expr] = "expr",
[field_func] = "func",
[field_initializer] = "initializer",
[field_lhs] = "lhs",
[field_name] = "name",
[field_op] = "op",
[field_params] = "params",
[field_return_type] = "return_type",
[field_rhs] = "rhs",
[field_stmts] = "stmts",
[field_then_block] = "then_block",
[field_type] = "type",
[field_update] = "update",
};
static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 1},
[2] = {.index = 1, .length = 1},
[3] = {.index = 2, .length = 1},
[4] = {.index = 3, .length = 2},
[5] = {.index = 5, .length = 1},
[6] = {.index = 6, .length = 2},
[7] = {.index = 8, .length = 2},
[8] = {.index = 10, .length = 1},
[9] = {.index = 11, .length = 3},
[10] = {.index = 14, .length = 3},
[11] = {.index = 17, .length = 2},
[12] = {.index = 19, .length = 2},
[13] = {.index = 21, .length = 2},
[14] = {.index = 23, .length = 2},
[15] = {.index = 25, .length = 4},
[16] = {.index = 29, .length = 3},
[17] = {.index = 32, .length = 2},
[18] = {.index = 34, .length = 3},
[19] = {.index = 37, .length = 2},
[20] = {.index = 39, .length = 4},
[21] = {.index = 43, .length = 4},
[22] = {.index = 47, .length = 2},
[23] = {.index = 49, .length = 4},
[24] = {.index = 53, .length = 4},
[25] = {.index = 57, .length = 5},
[26] = {.index = 62, .length = 5},
[27] = {.index = 67, .length = 4},
[28] = {.index = 71, .length = 6},
[29] = {.index = 77, .length = 5},
[30] = {.index = 82, .length = 7},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_expr, 0},
[1] =
{field_block, 1},
[2] =
{field_expr, 1},
[3] =
{field_expr, 0},
{field_expr, 1},
[5] =
{field_stmts, 1},
[6] =
{field_block, 2},
{field_cond, 1},
[8] =
{field_cond, 1},
{field_then_block, 2},
[10] =
{field_func, 0},
[11] =
{field_assignee, 0},
{field_expr, 2},
{field_op, 1},
[14] =
{field_lhs, 0},
{field_op, 1},
{field_rhs, 2},
[17] =
{field_expr, 2},
{field_stmts, 1},
[19] =
{field_args, 2},
{field_func, 0},
[21] =
{field_body, 4},
{field_name, 1},
[23] =
{field_expr, 3},
{field_name, 1},
[25] =
{field_cond, 1},
{field_else_block, 3},
{field_else_block, 4},
{field_then_block, 2},
[29] =
{field_args, 2},
{field_args, 3},
{field_func, 0},
[32] =
{field_name, 0},
{field_type, 2},
[34] =
{field_body, 5},
{field_name, 1},
{field_params, 3},
[37] =
{field_expr, 4},
{field_name, 2},
[39] =
{field_args, 2},
{field_args, 3},
{field_args, 4},
{field_func, 0},
[43] =
{field_body, 6},
{field_name, 1},
{field_return_type, 4},
{field_return_type, 5},
[47] =
{field_name, 1},
{field_type, 3},
[49] =
{field_body, 6},
{field_name, 1},
{field_params, 3},
{field_params, 4},
[53] =
{field_expr, 5},
{field_name, 1},
{field_type, 2},
{field_type, 3},
[57] =
{field_body, 7},
{field_name, 1},
{field_params, 3},
{field_return_type, 5},
{field_return_type, 6},
[62] =
{field_body, 7},
{field_name, 1},
{field_params, 3},
{field_params, 4},
{field_params, 5},
[67] =
{field_expr, 6},
{field_name, 2},
{field_type, 3},
{field_type, 4},
[71] =
{field_body, 8},
{field_name, 1},
{field_params, 3},
{field_params, 4},
{field_return_type, 6},
{field_return_type, 7},
[77] =
{field_block, 8},
{field_cond, 5},
{field_initializer, 3},
{field_name, 1},
{field_update, 7},
[82] =
{field_body, 9},
{field_name, 1},
{field_params, 3},
{field_params, 4},
{field_params, 5},
{field_return_type, 7},
{field_return_type, 8},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 3,
[4] = 4,
[5] = 5,
[6] = 6,
[7] = 5,
[8] = 6,
[9] = 9,
[10] = 10,
[11] = 11,
[12] = 12,
[13] = 9,
[14] = 10,
[15] = 11,
[16] = 12,
[17] = 2,
[18] = 4,
[19] = 2,
[20] = 4,
[21] = 2,
[22] = 4,
[23] = 4,
[24] = 2,
[25] = 4,
[26] = 2,
[27] = 4,
[28] = 2,
[29] = 12,
[30] = 30,
[31] = 31,
[32] = 32,
[33] = 10,
[34] = 31,
[35] = 9,
[36] = 10,
[37] = 11,
[38] = 31,
[39] = 11,
[40] = 12,
[41] = 30,
[42] = 31,
[43] = 9,
[44] = 9,
[45] = 11,
[46] = 10,
[47] = 12,
[48] = 6,
[49] = 49,
[50] = 50,
[51] = 51,
[52] = 52,
[53] = 53,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 57,
[58] = 58,
[59] = 59,
[60] = 60,
[61] = 61,
[62] = 62,
[63] = 63,
[64] = 64,
[65] = 65,
[66] = 66,
[67] = 67,
[68] = 30,
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 73,
[74] = 74,
[75] = 75,
[76] = 76,
[77] = 74,
[78] = 78,
[79] = 79,
[80] = 80,
[81] = 78,
[82] = 80,
[83] = 83,
[84] = 79,
[85] = 85,
[86] = 86,
[87] = 87,
[88] = 88,
[89] = 89,
[90] = 90,
[91] = 91,
[92] = 92,
[93] = 93,
[94] = 94,
[95] = 95,
[96] = 96,
[97] = 97,
[98] = 98,
[99] = 99,
[100] = 100,
[101] = 101,
[102] = 102,
[103] = 103,
[104] = 104,
[105] = 94,
[106] = 106,
[107] = 92,
[108] = 93,
[109] = 89,
[110] = 110,
[111] = 93,
[112] = 112,
[113] = 113,
[114] = 90,
[115] = 115,
[116] = 112,
[117] = 83,
[118] = 86,
[119] = 88,
[120] = 90,
[121] = 115,
[122] = 112,
[123] = 83,
[124] = 86,
[125] = 115,
[126] = 112,
[127] = 83,
[128] = 86,
[129] = 115,
[130] = 130,
[131] = 131,
[132] = 130,
[133] = 133,
[134] = 134,
[135] = 135,
[136] = 136,
[137] = 131,
[138] = 138,
[139] = 130,
[140] = 140,
[141] = 133,
[142] = 130,
[143] = 134,
[144] = 133,
[145] = 145,
[146] = 136,
[147] = 133,
[148] = 130,
[149] = 136,
[150] = 140,
[151] = 151,
[152] = 135,
[153] = 133,
[154] = 134,
[155] = 135,
[156] = 136,
[157] = 131,
[158] = 158,
[159] = 131,
[160] = 130,
[161] = 130,
[162] = 133,
[163] = 134,
[164] = 151,
[165] = 135,
[166] = 133,
[167] = 145,
[168] = 168,
[169] = 10,
[170] = 12,
[171] = 11,
[172] = 12,
[173] = 173,
[174] = 174,
[175] = 175,
[176] = 176,
[177] = 177,
[178] = 178,
[179] = 179,
[180] = 180,
[181] = 174,
[182] = 182,
[183] = 178,
[184] = 179,
[185] = 9,
[186] = 10,
[187] = 11,
[188] = 9,
[189] = 177,
[190] = 175,
[191] = 173,
[192] = 176,
[193] = 193,
[194] = 194,
[195] = 195,
[196] = 194,
[197] = 197,
[198] = 198,
[199] = 199,
[200] = 199,
[201] = 201,
[202] = 202,
[203] = 195,
[204] = 201,
[205] = 202,
[206] = 177,
[207] = 173,
[208] = 175,
[209] = 176,
[210] = 193,
[211] = 198,
[212] = 197,
[213] = 213,
[214] = 214,
[215] = 215,
[216] = 215,
[217] = 217,
[218] = 218,
[219] = 215,
[220] = 220,
[221] = 221,
[222] = 222,
[223] = 223,
[224] = 224,
[225] = 225,
[226] = 226,
[227] = 227,
[228] = 228,
[229] = 229,
[230] = 230,
[231] = 231,
[232] = 232,
[233] = 233,
[234] = 234,
[235] = 235,
[236] = 236,
[237] = 237,
[238] = 238,
[239] = 239,
[240] = 177,
[241] = 241,
[242] = 173,
[243] = 175,
[244] = 176,
[245] = 245,
[246] = 246,
[247] = 234,
[248] = 248,
[249] = 248,
[250] = 250,
[251] = 234,
[252] = 248,
[253] = 234,
[254] = 248,
[255] = 255,
[256] = 256,
[257] = 257,
[258] = 258,
[259] = 259,
[260] = 258,
[261] = 261,
[262] = 259,
[263] = 263,
[264] = 264,
[265] = 265,
[266] = 264,
[267] = 265,
[268] = 264,
[269] = 265,
[270] = 258,
[271] = 271,
[272] = 265,
[273] = 273,
[274] = 274,
[275] = 264,
[276] = 258,
[277] = 277,
[278] = 278,
[279] = 279,
[280] = 280,
[281] = 281,
[282] = 282,
[283] = 283,
[284] = 279,
[285] = 285,
[286] = 279,
[287] = 283,
[288] = 279,
[289] = 285,
[290] = 290,
[291] = 290,
[292] = 292,
[293] = 292,
[294] = 294,
[295] = 290,
[296] = 296,
[297] = 283,
[298] = 298,
[299] = 290,
[300] = 283,
[301] = 301,
[302] = 302,
[303] = 303,
[304] = 298,
[305] = 282,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(30);
ADVANCE_MAP(
'!', 56,
'%', 67,
'&', 87,
'\'', 3,
'(', 33,
')', 35,
'*', 62,
'+', 61,
',', 34,
'-', 59,
'/', 65,
'0', 145,
':', 38,
';', 44,
'<', 72,
'=', 43,
'>', 74,
'^', 85,
'a', 133,
'b', 131,
'c', 126,
'e', 120,
'f', 104,
'i', 115,
'l', 107,
'm', 140,
'r', 114,
't', 130,
'w', 116,
'{', 39,
'|', 82,
'}', 40,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(146);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('d' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 1:
ADVANCE_MAP(
'!', 55,
'\'', 3,
'(', 33,
')', 35,
'-', 57,
'/', 6,
'0', 145,
';', 44,
'f', 106,
'i', 115,
't', 130,
'{', 39,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(146);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 2:
if (lookahead == '\'') ADVANCE(150);
END_STATE();
case 3:
if (lookahead == '\'') ADVANCE(150);
if (lookahead == '\\') ADVANCE(20);
if (lookahead != 0) ADVANCE(2);
END_STATE();
case 4:
if (lookahead == '(') ADVANCE(33);
if (lookahead == '/') ADVANCE(6);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 5:
if (lookahead == ')') ADVANCE(35);
if (lookahead == '-') ADVANCE(11);
if (lookahead == '/') ADVANCE(6);
if (lookahead == 'm') ADVANCE(140);
if (lookahead == '{') ADVANCE(39);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(5);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 6:
if (lookahead == '*') ADVANCE(8);
if (lookahead == '/') ADVANCE(153);
END_STATE();
case 7:
if (lookahead == '*') ADVANCE(7);
if (lookahead == '/') ADVANCE(154);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 8:
if (lookahead == '*') ADVANCE(7);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == '=') ADVANCE(71);
END_STATE();
case 10:
if (lookahead == '=') ADVANCE(70);
END_STATE();
case 11:
if (lookahead == '>') ADVANCE(36);
END_STATE();
case 12:
if (lookahead == 'e') ADVANCE(19);
END_STATE();
case 13:
if (lookahead == 'e') ADVANCE(53);
END_STATE();
case 14:
if (lookahead == 'f') ADVANCE(51);
END_STATE();
case 15:
if (lookahead == 'l') ADVANCE(18);
END_STATE();
case 16:
if (lookahead == 'n') ADVANCE(31);
END_STATE();
case 17:
if (lookahead == 's') ADVANCE(101);
END_STATE();
case 18:
if (lookahead == 's') ADVANCE(13);
END_STATE();
case 19:
if (lookahead == 't') ADVANCE(41);
END_STATE();
case 20:
if (lookahead == 'x') ADVANCE(24);
if (lookahead == '\'' ||
lookahead == '\\' ||
lookahead == 'b' ||
lookahead == 'n' ||
lookahead == 'r' ||
lookahead == 't') ADVANCE(2);
END_STATE();
case 21:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(149);
END_STATE();
case 22:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(2);
END_STATE();
case 23:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(147);
END_STATE();
case 24:
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(22);
END_STATE();
case 25:
if (eof) ADVANCE(30);
ADVANCE_MAP(
'!', 56,
'%', 66,
'&', 86,
'\'', 3,
'(', 33,
'*', 63,
'+', 60,
'-', 57,
'/', 64,
'0', 145,
';', 44,
'<', 73,
'=', 10,
'>', 75,
'^', 84,
'a', 133,
'b', 131,
'c', 126,
'e', 120,
'f', 105,
'i', 115,
'l', 107,
'r', 114,
't', 130,
'w', 116,
'{', 39,
'|', 83,
'}', 40,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(25);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(146);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('d' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 26:
if (eof) ADVANCE(30);
ADVANCE_MAP(
'!', 56,
'%', 66,
'&', 86,
'\'', 3,
'(', 33,
'*', 63,
'+', 60,
'-', 57,
'/', 64,
'0', 145,
';', 44,
'<', 73,
'=', 10,
'>', 75,
'^', 84,
'a', 133,
'b', 131,
'c', 126,
'f', 105,
'i', 115,
'l', 107,
'r', 114,
't', 130,
'w', 116,
'{', 39,
'|', 83,
'}', 40,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(26);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(146);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('d' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 27:
if (eof) ADVANCE(30);
ADVANCE_MAP(
'!', 55,
'\'', 3,
'(', 33,
'-', 57,
'/', 6,
'0', 145,
';', 44,
'b', 131,
'c', 126,
'f', 105,
'i', 115,
'l', 107,
'r', 114,
't', 130,
'w', 116,
'{', 39,
'}', 40,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(27);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(146);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 28:
if (eof) ADVANCE(30);
ADVANCE_MAP(
'!', 55,
'\'', 3,
'(', 33,
'-', 57,
'/', 6,
'0', 145,
'b', 131,
'c', 126,
'f', 104,
'i', 115,
'l', 107,
'r', 114,
't', 130,
'w', 116,
'{', 39,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(28);
if (('1' <= lookahead && lookahead <= '9')) ADVANCE(146);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 29:
if (eof) ADVANCE(30);
ADVANCE_MAP(
'!', 9,
'%', 67,
'&', 87,
'(', 33,
')', 35,
'*', 62,
'+', 61,
',', 34,
'-', 58,
'/', 65,
';', 44,
'<', 72,
'=', 43,
'>', 74,
'^', 85,
'a', 17,
'e', 15,
'f', 16,
'i', 14,
'l', 12,
'{', 39,
'|', 82,
'}', 40,
);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(29);
END_STATE();
case 30:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_fn);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_fn);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
case 37:
ACCEPT_TOKEN(anon_sym_mut);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 38:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 40:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_let);
END_STATE();
case 42:
ACCEPT_TOKEN(anon_sym_let);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 43:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(70);
END_STATE();
case 44:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 45:
ACCEPT_TOKEN(anon_sym_return);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 46:
ACCEPT_TOKEN(anon_sym_loop);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 47:
ACCEPT_TOKEN(anon_sym_while);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 48:
ACCEPT_TOKEN(anon_sym_for);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 49:
ACCEPT_TOKEN(anon_sym_break);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 50:
ACCEPT_TOKEN(anon_sym_continue);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_if);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_else);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_BANG);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_BANG);
if (lookahead == '=') ADVANCE(71);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_DASH);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(91);
END_STATE();
case 59:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(91);
if (lookahead == '>') ADVANCE(36);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 61:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(90);
END_STATE();
case 62:
ACCEPT_TOKEN(anon_sym_STAR);
if (lookahead == '*') ADVANCE(69);
if (lookahead == '=') ADVANCE(92);
END_STATE();
case 63:
ACCEPT_TOKEN(anon_sym_STAR);
if (lookahead == '*') ADVANCE(68);
END_STATE();
case 64:
ACCEPT_TOKEN(anon_sym_SLASH);
if (lookahead == '*') ADVANCE(8);
if (lookahead == '/') ADVANCE(153);
END_STATE();
case 65:
ACCEPT_TOKEN(anon_sym_SLASH);
if (lookahead == '*') ADVANCE(8);
if (lookahead == '/') ADVANCE(153);
if (lookahead == '=') ADVANCE(93);
END_STATE();
case 66:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 67:
ACCEPT_TOKEN(anon_sym_PERCENT);
if (lookahead == '=') ADVANCE(94);
END_STATE();
case 68:
ACCEPT_TOKEN(anon_sym_STAR_STAR);
END_STATE();
case 69:
ACCEPT_TOKEN(anon_sym_STAR_STAR);
if (lookahead == '=') ADVANCE(95);
END_STATE();
case 70:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 72:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '<') ADVANCE(79);
if (lookahead == '=') ADVANCE(76);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '<') ADVANCE(78);
if (lookahead == '=') ADVANCE(76);
END_STATE();
case 74:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(77);
if (lookahead == '>') ADVANCE(81);
END_STATE();
case 75:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(77);
if (lookahead == '>') ADVANCE(80);
END_STATE();
case 76:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 77:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 78:
ACCEPT_TOKEN(anon_sym_LT_LT);
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_LT_LT);
if (lookahead == '=') ADVANCE(96);
END_STATE();
case 80:
ACCEPT_TOKEN(anon_sym_GT_GT);
END_STATE();
case 81:
ACCEPT_TOKEN(anon_sym_GT_GT);
if (lookahead == '=') ADVANCE(97);
END_STATE();
case 82:
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '=') ADVANCE(98);
if (lookahead == '|') ADVANCE(89);
END_STATE();
case 83:
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '|') ADVANCE(89);
END_STATE();
case 84:
ACCEPT_TOKEN(anon_sym_CARET);
END_STATE();
case 85:
ACCEPT_TOKEN(anon_sym_CARET);
if (lookahead == '=') ADVANCE(100);
END_STATE();
case 86:
ACCEPT_TOKEN(anon_sym_AMP);
if (lookahead == '&') ADVANCE(88);
END_STATE();
case 87:
ACCEPT_TOKEN(anon_sym_AMP);
if (lookahead == '&') ADVANCE(88);
if (lookahead == '=') ADVANCE(99);
END_STATE();
case 88:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 89:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 90:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 91:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 92:
ACCEPT_TOKEN(anon_sym_STAR_EQ);
END_STATE();
case 93:
ACCEPT_TOKEN(anon_sym_SLASH_EQ);
END_STATE();
case 94:
ACCEPT_TOKEN(anon_sym_PERCENT_EQ);
END_STATE();
case 95:
ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ);
END_STATE();
case 96:
ACCEPT_TOKEN(anon_sym_LT_LT_EQ);
END_STATE();
case 97:
ACCEPT_TOKEN(anon_sym_GT_GT_EQ);
END_STATE();
case 98:
ACCEPT_TOKEN(anon_sym_PIPE_EQ);
END_STATE();
case 99:
ACCEPT_TOKEN(anon_sym_AMP_EQ);
END_STATE();
case 100:
ACCEPT_TOKEN(anon_sym_CARET_EQ);
END_STATE();
case 101:
ACCEPT_TOKEN(anon_sym_as);
END_STATE();
case 102:
ACCEPT_TOKEN(anon_sym_as);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 103:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'a') ADVANCE(119);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 104:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'a') ADVANCE(122);
if (lookahead == 'n') ADVANCE(32);
if (lookahead == 'o') ADVANCE(129);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 105:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'a') ADVANCE(122);
if (lookahead == 'o') ADVANCE(129);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 106:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'a') ADVANCE(122);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('b' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 107:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(136);
if (lookahead == 'o') ADVANCE(127);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 108:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(103);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 109:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(54);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 110:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(151);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 111:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(152);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 112:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(47);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 113:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(50);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 114:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'e') ADVANCE(139);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 115:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'f') ADVANCE(52);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 116:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'h') ADVANCE(117);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 117:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'i') ADVANCE(121);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 118:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'i') ADVANCE(125);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 119:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'k') ADVANCE(49);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 120:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'l') ADVANCE(134);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 121:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'l') ADVANCE(112);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 122:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'l') ADVANCE(135);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 123:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'n') ADVANCE(45);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 124:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'n') ADVANCE(138);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 125:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'n') ADVANCE(143);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 126:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'o') ADVANCE(124);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 127:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'o') ADVANCE(128);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 128:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'p') ADVANCE(46);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 129:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'r') ADVANCE(48);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 130:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'r') ADVANCE(142);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 131:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'r') ADVANCE(108);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 132:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'r') ADVANCE(123);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 133:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 's') ADVANCE(102);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 134:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 's') ADVANCE(109);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 135:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 's') ADVANCE(111);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 136:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 't') ADVANCE(42);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 137:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 't') ADVANCE(37);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 138:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 't') ADVANCE(118);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 139:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 't') ADVANCE(141);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 140:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'u') ADVANCE(137);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 141:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'u') ADVANCE(132);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 142:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'u') ADVANCE(110);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 143:
ACCEPT_TOKEN(sym_ident);
if (lookahead == 'u') ADVANCE(113);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 144:
ACCEPT_TOKEN(sym_ident);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 145:
ACCEPT_TOKEN(sym_int);
if (lookahead == '.') ADVANCE(21);
if (lookahead == 'f') ADVANCE(148);
if (lookahead == 'x') ADVANCE(23);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(146);
END_STATE();
case 146:
ACCEPT_TOKEN(sym_int);
if (lookahead == '.') ADVANCE(21);
if (lookahead == 'f') ADVANCE(148);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(146);
END_STATE();
case 147:
ACCEPT_TOKEN(sym_int);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(147);
END_STATE();
case 148:
ACCEPT_TOKEN(sym_float);
END_STATE();
case 149:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9') ||
lookahead == '_') ADVANCE(149);
END_STATE();
case 150:
ACCEPT_TOKEN(sym_char);
END_STATE();
case 151:
ACCEPT_TOKEN(anon_sym_true);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 152:
ACCEPT_TOKEN(anon_sym_false);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(144);
END_STATE();
case 153:
ACCEPT_TOKEN(sym_line_comment);
if (lookahead != 0 &&
lookahead != '\n') ADVANCE(153);
END_STATE();
case 154:
ACCEPT_TOKEN(sym_block_comment);
END_STATE();
default:
return false;
}
}
static const TSLexerMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 28},
[2] = {.lex_state = 27},
[3] = {.lex_state = 27},
[4] = {.lex_state = 27},
[5] = {.lex_state = 27},
[6] = {.lex_state = 25},
[7] = {.lex_state = 27},
[8] = {.lex_state = 25},
[9] = {.lex_state = 25},
[10] = {.lex_state = 25},
[11] = {.lex_state = 25},
[12] = {.lex_state = 25},
[13] = {.lex_state = 25},
[14] = {.lex_state = 25},
[15] = {.lex_state = 25},
[16] = {.lex_state = 25},
[17] = {.lex_state = 27},
[18] = {.lex_state = 27},
[19] = {.lex_state = 27},
[20] = {.lex_state = 27},
[21] = {.lex_state = 27},
[22] = {.lex_state = 27},
[23] = {.lex_state = 27},
[24] = {.lex_state = 27},
[25] = {.lex_state = 27},
[26] = {.lex_state = 27},
[27] = {.lex_state = 27},
[28] = {.lex_state = 27},
[29] = {.lex_state = 26},
[30] = {.lex_state = 26},
[31] = {.lex_state = 26},
[32] = {.lex_state = 29},
[33] = {.lex_state = 26},
[34] = {.lex_state = 26},
[35] = {.lex_state = 26},
[36] = {.lex_state = 26},
[37] = {.lex_state = 26},
[38] = {.lex_state = 26},
[39] = {.lex_state = 26},
[40] = {.lex_state = 26},
[41] = {.lex_state = 26},
[42] = {.lex_state = 26},
[43] = {.lex_state = 26},
[44] = {.lex_state = 29},
[45] = {.lex_state = 29},
[46] = {.lex_state = 29},
[47] = {.lex_state = 29},
[48] = {.lex_state = 29},
[49] = {.lex_state = 29},
[50] = {.lex_state = 29},
[51] = {.lex_state = 29},
[52] = {.lex_state = 29},
[53] = {.lex_state = 29},
[54] = {.lex_state = 29},
[55] = {.lex_state = 29},
[56] = {.lex_state = 29},
[57] = {.lex_state = 29},
[58] = {.lex_state = 29},
[59] = {.lex_state = 29},
[60] = {.lex_state = 29},
[61] = {.lex_state = 29},
[62] = {.lex_state = 29},
[63] = {.lex_state = 29},
[64] = {.lex_state = 29},
[65] = {.lex_state = 29},
[66] = {.lex_state = 29},
[67] = {.lex_state = 29},
[68] = {.lex_state = 29},
[69] = {.lex_state = 29},
[70] = {.lex_state = 29},
[71] = {.lex_state = 29},
[72] = {.lex_state = 29},
[73] = {.lex_state = 1},
[74] = {.lex_state = 1},
[75] = {.lex_state = 1},
[76] = {.lex_state = 1},
[77] = {.lex_state = 1},
[78] = {.lex_state = 1},
[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 = 29},
[86] = {.lex_state = 1},
[87] = {.lex_state = 1},
[88] = {.lex_state = 1},
[89] = {.lex_state = 29},
[90] = {.lex_state = 1},
[91] = {.lex_state = 1},
[92] = {.lex_state = 29},
[93] = {.lex_state = 29},
[94] = {.lex_state = 29},
[95] = {.lex_state = 1},
[96] = {.lex_state = 1},
[97] = {.lex_state = 1},
[98] = {.lex_state = 1},
[99] = {.lex_state = 1},
[100] = {.lex_state = 1},
[101] = {.lex_state = 1},
[102] = {.lex_state = 1},
[103] = {.lex_state = 1},
[104] = {.lex_state = 1},
[105] = {.lex_state = 29},
[106] = {.lex_state = 1},
[107] = {.lex_state = 29},
[108] = {.lex_state = 29},
[109] = {.lex_state = 29},
[110] = {.lex_state = 1},
[111] = {.lex_state = 29},
[112] = {.lex_state = 1},
[113] = {.lex_state = 1},
[114] = {.lex_state = 1},
[115] = {.lex_state = 1},
[116] = {.lex_state = 1},
[117] = {.lex_state = 1},
[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 = 1},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 1},
[130] = {.lex_state = 29},
[131] = {.lex_state = 29},
[132] = {.lex_state = 29},
[133] = {.lex_state = 29},
[134] = {.lex_state = 29},
[135] = {.lex_state = 29},
[136] = {.lex_state = 29},
[137] = {.lex_state = 29},
[138] = {.lex_state = 29},
[139] = {.lex_state = 29},
[140] = {.lex_state = 29},
[141] = {.lex_state = 29},
[142] = {.lex_state = 29},
[143] = {.lex_state = 29},
[144] = {.lex_state = 29},
[145] = {.lex_state = 29},
[146] = {.lex_state = 29},
[147] = {.lex_state = 29},
[148] = {.lex_state = 29},
[149] = {.lex_state = 29},
[150] = {.lex_state = 29},
[151] = {.lex_state = 29},
[152] = {.lex_state = 29},
[153] = {.lex_state = 29},
[154] = {.lex_state = 29},
[155] = {.lex_state = 29},
[156] = {.lex_state = 29},
[157] = {.lex_state = 29},
[158] = {.lex_state = 29},
[159] = {.lex_state = 29},
[160] = {.lex_state = 29},
[161] = {.lex_state = 29},
[162] = {.lex_state = 29},
[163] = {.lex_state = 29},
[164] = {.lex_state = 29},
[165] = {.lex_state = 29},
[166] = {.lex_state = 29},
[167] = {.lex_state = 29},
[168] = {.lex_state = 29},
[169] = {.lex_state = 27},
[170] = {.lex_state = 27},
[171] = {.lex_state = 27},
[172] = {.lex_state = 27},
[173] = {.lex_state = 28},
[174] = {.lex_state = 27},
[175] = {.lex_state = 28},
[176] = {.lex_state = 28},
[177] = {.lex_state = 28},
[178] = {.lex_state = 27},
[179] = {.lex_state = 27},
[180] = {.lex_state = 29},
[181] = {.lex_state = 27},
[182] = {.lex_state = 28},
[183] = {.lex_state = 27},
[184] = {.lex_state = 27},
[185] = {.lex_state = 27},
[186] = {.lex_state = 27},
[187] = {.lex_state = 27},
[188] = {.lex_state = 27},
[189] = {.lex_state = 27},
[190] = {.lex_state = 27},
[191] = {.lex_state = 27},
[192] = {.lex_state = 27},
[193] = {.lex_state = 27},
[194] = {.lex_state = 27},
[195] = {.lex_state = 27},
[196] = {.lex_state = 27},
[197] = {.lex_state = 27},
[198] = {.lex_state = 27},
[199] = {.lex_state = 27},
[200] = {.lex_state = 27},
[201] = {.lex_state = 27},
[202] = {.lex_state = 27},
[203] = {.lex_state = 27},
[204] = {.lex_state = 27},
[205] = {.lex_state = 27},
[206] = {.lex_state = 27},
[207] = {.lex_state = 27},
[208] = {.lex_state = 27},
[209] = {.lex_state = 27},
[210] = {.lex_state = 27},
[211] = {.lex_state = 27},
[212] = {.lex_state = 27},
[213] = {.lex_state = 29},
[214] = {.lex_state = 29},
[215] = {.lex_state = 29},
[216] = {.lex_state = 29},
[217] = {.lex_state = 5},
[218] = {.lex_state = 5},
[219] = {.lex_state = 29},
[220] = {.lex_state = 5},
[221] = {.lex_state = 0},
[222] = {.lex_state = 4},
[223] = {.lex_state = 5},
[224] = {.lex_state = 4},
[225] = {.lex_state = 4},
[226] = {.lex_state = 29},
[227] = {.lex_state = 29},
[228] = {.lex_state = 5},
[229] = {.lex_state = 5},
[230] = {.lex_state = 29},
[231] = {.lex_state = 0},
[232] = {.lex_state = 5},
[233] = {.lex_state = 4},
[234] = {.lex_state = 4},
[235] = {.lex_state = 29},
[236] = {.lex_state = 29},
[237] = {.lex_state = 29},
[238] = {.lex_state = 4},
[239] = {.lex_state = 0},
[240] = {.lex_state = 29},
[241] = {.lex_state = 5},
[242] = {.lex_state = 29},
[243] = {.lex_state = 29},
[244] = {.lex_state = 29},
[245] = {.lex_state = 4},
[246] = {.lex_state = 0},
[247] = {.lex_state = 4},
[248] = {.lex_state = 4},
[249] = {.lex_state = 4},
[250] = {.lex_state = 29},
[251] = {.lex_state = 4},
[252] = {.lex_state = 4},
[253] = {.lex_state = 4},
[254] = {.lex_state = 4},
[255] = {.lex_state = 4},
[256] = {.lex_state = 29},
[257] = {.lex_state = 0},
[258] = {.lex_state = 5},
[259] = {.lex_state = 0},
[260] = {.lex_state = 5},
[261] = {.lex_state = 0},
[262] = {.lex_state = 0},
[263] = {.lex_state = 0},
[264] = {.lex_state = 0},
[265] = {.lex_state = 0},
[266] = {.lex_state = 0},
[267] = {.lex_state = 0},
[268] = {.lex_state = 0},
[269] = {.lex_state = 0},
[270] = {.lex_state = 5},
[271] = {.lex_state = 0},
[272] = {.lex_state = 0},
[273] = {.lex_state = 0},
[274] = {.lex_state = 0},
[275] = {.lex_state = 0},
[276] = {.lex_state = 5},
[277] = {.lex_state = 0},
[278] = {.lex_state = 0},
[279] = {.lex_state = 0},
[280] = {.lex_state = 4},
[281] = {.lex_state = 0},
[282] = {.lex_state = 4},
[283] = {.lex_state = 0},
[284] = {.lex_state = 0},
[285] = {.lex_state = 0},
[286] = {.lex_state = 0},
[287] = {.lex_state = 0},
[288] = {.lex_state = 0},
[289] = {.lex_state = 0},
[290] = {.lex_state = 4},
[291] = {.lex_state = 4},
[292] = {.lex_state = 0},
[293] = {.lex_state = 0},
[294] = {.lex_state = 0},
[295] = {.lex_state = 4},
[296] = {.lex_state = 0},
[297] = {.lex_state = 0},
[298] = {.lex_state = 0},
[299] = {.lex_state = 4},
[300] = {.lex_state = 0},
[301] = {.lex_state = 4},
[302] = {.lex_state = 0},
[303] = {.lex_state = 0},
[304] = {.lex_state = 0},
[305] = {.lex_state = 4},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[STATE(0)] = {
[ts_builtin_sym_end] = ACTIONS(1),
[anon_sym_fn] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[anon_sym_DASH_GT] = ACTIONS(1),
[anon_sym_mut] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_let] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_return] = ACTIONS(1),
[anon_sym_loop] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_break] = ACTIONS(1),
[anon_sym_continue] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_BANG] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_STAR_STAR] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_LT] = ACTIONS(1),
[anon_sym_GT_GT] = ACTIONS(1),
[anon_sym_PIPE] = ACTIONS(1),
[anon_sym_CARET] = ACTIONS(1),
[anon_sym_AMP] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_STAR_EQ] = ACTIONS(1),
[anon_sym_SLASH_EQ] = ACTIONS(1),
[anon_sym_PERCENT_EQ] = ACTIONS(1),
[anon_sym_STAR_STAR_EQ] = ACTIONS(1),
[anon_sym_LT_LT_EQ] = ACTIONS(1),
[anon_sym_GT_GT_EQ] = ACTIONS(1),
[anon_sym_PIPE_EQ] = ACTIONS(1),
[anon_sym_AMP_EQ] = ACTIONS(1),
[anon_sym_CARET_EQ] = ACTIONS(1),
[anon_sym_as] = ACTIONS(1),
[sym_ident] = ACTIONS(1),
[sym_int] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_char] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[sym_line_comment] = ACTIONS(3),
[sym_block_comment] = ACTIONS(3),
},
[STATE(1)] = {
[sym_program] = STATE(281),
[sym__item] = STATE(214),
[sym_function_definition] = STATE(214),
[sym_block] = STATE(38),
[sym__statement] = STATE(3),
[sym_let_stmt] = STATE(182),
[sym_return_stmt] = STATE(3),
[sym_loop_stmt] = STATE(3),
[sym_while_stmt] = STATE(3),
[sym_for_stmt] = STATE(3),
[sym_break_stmt] = STATE(3),
[sym_continue_stmt] = STATE(3),
[sym_expr_stmt] = STATE(3),
[sym__expression] = STATE(168),
[sym__expr_with_block] = STATE(38),
[sym_if_expr] = STATE(38),
[sym__expr_without_block] = STATE(94),
[sym_prefix_expr] = STATE(94),
[sym_infix_expr] = STATE(94),
[sym_assign_expr] = STATE(94),
[sym_call_expr] = STATE(94),
[sym_cast_expr] = STATE(94),
[sym_bool] = STATE(94),
[aux_sym_program_repeat1] = STATE(214),
[aux_sym_program_repeat2] = STATE(3),
[ts_builtin_sym_end] = ACTIONS(5),
[anon_sym_fn] = ACTIONS(7),
[anon_sym_LPAREN] = ACTIONS(9),
[anon_sym_LBRACE] = ACTIONS(11),
[anon_sym_let] = ACTIONS(13),
[anon_sym_return] = ACTIONS(15),
[anon_sym_loop] = ACTIONS(17),
[anon_sym_while] = ACTIONS(19),
[anon_sym_for] = ACTIONS(21),
[anon_sym_break] = ACTIONS(23),
[anon_sym_continue] = ACTIONS(25),
[anon_sym_if] = ACTIONS(27),
[anon_sym_BANG] = ACTIONS(29),
[anon_sym_DASH] = ACTIONS(29),
[sym_ident] = ACTIONS(31),
[sym_int] = ACTIONS(33),
[sym_float] = ACTIONS(35),
[sym_char] = ACTIONS(35),
[anon_sym_true] = ACTIONS(37),
[anon_sym_false] = ACTIONS(37),
[sym_line_comment] = ACTIONS(3),
[sym_block_comment] = ACTIONS(3),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(41), 1,
anon_sym_RBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
STATE(139), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(23), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[85] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(11), 1,
anon_sym_LBRACE,
ACTIONS(15), 1,
anon_sym_return,
ACTIONS(17), 1,
anon_sym_loop,
ACTIONS(19), 1,
anon_sym_while,
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
anon_sym_break,
ACTIONS(25), 1,
anon_sym_continue,
ACTIONS(27), 1,
anon_sym_if,
ACTIONS(31), 1,
sym_ident,
ACTIONS(33), 1,
sym_int,
ACTIONS(63), 1,
ts_builtin_sym_end,
ACTIONS(65), 1,
anon_sym_let,
STATE(138), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(35), 2,
sym_float,
sym_char,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
STATE(38), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(94), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(5), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[170] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(67), 1,
anon_sym_RBRACE,
STATE(166), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[255] = 21,
ACTIONS(69), 1,
ts_builtin_sym_end,
ACTIONS(71), 1,
anon_sym_LPAREN,
ACTIONS(74), 1,
anon_sym_LBRACE,
ACTIONS(77), 1,
anon_sym_let,
ACTIONS(80), 1,
anon_sym_return,
ACTIONS(83), 1,
anon_sym_loop,
ACTIONS(86), 1,
anon_sym_while,
ACTIONS(89), 1,
anon_sym_for,
ACTIONS(92), 1,
anon_sym_break,
ACTIONS(95), 1,
anon_sym_continue,
ACTIONS(98), 1,
anon_sym_if,
ACTIONS(104), 1,
sym_ident,
ACTIONS(107), 1,
sym_int,
STATE(180), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(101), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(110), 2,
sym_float,
sym_char,
ACTIONS(113), 2,
anon_sym_true,
anon_sym_false,
STATE(34), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(94), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(5), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[340] = 4,
ACTIONS(120), 1,
anon_sym_else,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(116), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(118), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[391] = 21,
ACTIONS(69), 1,
anon_sym_RBRACE,
ACTIONS(71), 1,
anon_sym_LPAREN,
ACTIONS(104), 1,
sym_ident,
ACTIONS(122), 1,
anon_sym_LBRACE,
ACTIONS(125), 1,
anon_sym_let,
ACTIONS(128), 1,
anon_sym_return,
ACTIONS(131), 1,
anon_sym_loop,
ACTIONS(134), 1,
anon_sym_while,
ACTIONS(137), 1,
anon_sym_for,
ACTIONS(140), 1,
anon_sym_break,
ACTIONS(143), 1,
anon_sym_continue,
ACTIONS(146), 1,
anon_sym_if,
ACTIONS(149), 1,
sym_int,
STATE(180), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(101), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(113), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(152), 2,
sym_float,
sym_char,
STATE(42), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[476] = 4,
ACTIONS(155), 1,
anon_sym_else,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(116), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(118), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[527] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(157), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(159), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[576] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(161), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(163), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[625] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(165), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(167), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[674] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(169), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(171), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[723] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(157), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(159), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[772] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(161), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(163), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[821] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(165), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(167), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[870] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(169), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(171), 21,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_else,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[919] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(173), 1,
anon_sym_RBRACE,
STATE(148), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(18), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1004] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(175), 1,
anon_sym_RBRACE,
STATE(153), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1089] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(177), 1,
anon_sym_RBRACE,
STATE(160), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(20), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1174] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(179), 1,
anon_sym_RBRACE,
STATE(162), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1259] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(181), 1,
anon_sym_RBRACE,
STATE(132), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(22), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1344] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(183), 1,
anon_sym_RBRACE,
STATE(133), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1429] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(185), 1,
anon_sym_RBRACE,
STATE(141), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1514] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(187), 1,
anon_sym_RBRACE,
STATE(142), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(25), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1599] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(189), 1,
anon_sym_RBRACE,
STATE(144), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1684] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(191), 1,
anon_sym_RBRACE,
STATE(130), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(27), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1769] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(193), 1,
anon_sym_RBRACE,
STATE(147), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(7), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1854] = 21,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(43), 1,
anon_sym_let,
ACTIONS(45), 1,
anon_sym_return,
ACTIONS(47), 1,
anon_sym_loop,
ACTIONS(49), 1,
anon_sym_while,
ACTIONS(51), 1,
anon_sym_for,
ACTIONS(53), 1,
anon_sym_break,
ACTIONS(55), 1,
anon_sym_continue,
ACTIONS(57), 1,
anon_sym_if,
ACTIONS(59), 1,
sym_int,
ACTIONS(195), 1,
anon_sym_RBRACE,
STATE(161), 1,
sym__expression,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(61), 2,
sym_float,
sym_char,
STATE(31), 3,
sym_block,
sym__expr_with_block,
sym_if_expr,
STATE(105), 7,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
STATE(4), 10,
sym__statement,
sym_let_stmt,
sym_return_stmt,
sym_loop_stmt,
sym_while_stmt,
sym_for_stmt,
sym_break_stmt,
sym_continue_stmt,
sym_expr_stmt,
aux_sym_program_repeat2,
[1939] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(169), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(171), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[1987] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(197), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(199), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2035] = 6,
ACTIONS(207), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(201), 4,
anon_sym_LPAREN,
anon_sym_LBRACE,
sym_float,
sym_char,
ACTIONS(209), 7,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
ACTIONS(205), 13,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
ACTIONS(203), 14,
anon_sym_RBRACE,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[2089] = 6,
ACTIONS(213), 1,
anon_sym_LPAREN,
ACTIONS(215), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(219), 11,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_STAR_EQ,
anon_sym_SLASH_EQ,
anon_sym_PERCENT_EQ,
anon_sym_STAR_STAR_EQ,
anon_sym_LT_LT_EQ,
anon_sym_GT_GT_EQ,
anon_sym_PIPE_EQ,
anon_sym_AMP_EQ,
anon_sym_CARET_EQ,
ACTIONS(211), 13,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
ACTIONS(217), 13,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_LT,
anon_sym_GT,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_PIPE,
anon_sym_CARET,
anon_sym_AMP,
[2143] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(161), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(163), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2191] = 6,
ACTIONS(221), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(201), 5,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
sym_float,
sym_char,
ACTIONS(209), 7,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
ACTIONS(203), 13,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
ACTIONS(205), 13,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2245] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(157), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(159), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2293] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(161), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(163), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2341] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(165), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(167), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2389] = 6,
ACTIONS(221), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(201), 4,
anon_sym_LPAREN,
anon_sym_LBRACE,
sym_float,
sym_char,
ACTIONS(209), 7,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
ACTIONS(205), 13,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
ACTIONS(203), 14,
ts_builtin_sym_end,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[2443] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(165), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(167), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2491] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(169), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(171), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2539] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(197), 19,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(199), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2587] = 6,
ACTIONS(207), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(201), 5,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
sym_float,
sym_char,
ACTIONS(209), 7,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
ACTIONS(203), 13,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
ACTIONS(205), 13,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2641] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(157), 19,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
sym_float,
sym_char,
ACTIONS(159), 20,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
anon_sym_BANG,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
anon_sym_as,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[2689] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(159), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(157), 23,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_let,
anon_sym_SEMI,
anon_sym_else,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2727] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(167), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(165), 23,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_let,
anon_sym_SEMI,
anon_sym_else,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2765] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(163), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(161), 23,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_let,
anon_sym_SEMI,
anon_sym_else,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2803] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(171), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(169), 23,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_let,
anon_sym_SEMI,
anon_sym_else,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2841] = 4,
ACTIONS(223), 1,
anon_sym_else,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(118), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(116), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2879] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(227), 7,
anon_sym_EQ,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(225), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2915] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(231), 7,
anon_sym_EQ,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(229), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2951] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(235), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(233), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[2986] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(239), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(237), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3021] = 8,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(251), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(241), 15,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3066] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(255), 6,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
[3127] = 7,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(251), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(241), 17,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3170] = 5,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(251), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(241), 18,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3209] = 4,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(251), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(241), 19,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3246] = 11,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(251), 2,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(241), 11,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3297] = 9,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(251), 4,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(241), 13,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3344] = 14,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(251), 1,
anon_sym_PIPE,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(241), 8,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3401] = 12,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(251), 2,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(241), 9,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3454] = 13,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(251), 1,
anon_sym_PIPE,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(241), 9,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3509] = 14,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(241), 8,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
[3566] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(277), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(275), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3601] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(281), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(279), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3636] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(285), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(283), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3671] = 15,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(241), 7,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_PIPE_PIPE,
[3730] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(199), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(197), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3765] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(289), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(287), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3800] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(293), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(291), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3835] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(297), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(295), 20,
ts_builtin_sym_end,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[3870] = 18,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(299), 1,
anon_sym_COMMA,
ACTIONS(301), 1,
anon_sym_RPAREN,
STATE(257), 1,
aux_sym_call_expr_repeat1,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[3932] = 11,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(303), 1,
anon_sym_RPAREN,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(309), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(311), 2,
sym_float,
sym_char,
STATE(85), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[3980] = 11,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(313), 1,
anon_sym_SEMI,
ACTIONS(315), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(317), 2,
sym_float,
sym_char,
STATE(140), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4028] = 11,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(309), 1,
sym_int,
ACTIONS(319), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(311), 2,
sym_float,
sym_char,
STATE(85), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4076] = 11,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(321), 1,
anon_sym_RPAREN,
ACTIONS(323), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(325), 2,
sym_float,
sym_char,
STATE(72), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4124] = 11,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(327), 1,
anon_sym_SEMI,
ACTIONS(329), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(331), 2,
sym_float,
sym_char,
STATE(150), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4172] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(333), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(335), 2,
sym_float,
sym_char,
STATE(107), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4217] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(337), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(339), 2,
sym_float,
sym_char,
STATE(164), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4262] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(341), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(343), 2,
sym_float,
sym_char,
STATE(145), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4307] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(345), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(347), 2,
sym_float,
sym_char,
STATE(92), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4352] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(349), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(351), 2,
sym_float,
sym_char,
STATE(167), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4397] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(353), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(355), 2,
sym_float,
sym_char,
STATE(149), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4442] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(357), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(359), 2,
sym_float,
sym_char,
STATE(151), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4487] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
ACTIONS(361), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[4544] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(363), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(365), 2,
sym_float,
sym_char,
STATE(159), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4589] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(309), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(311), 2,
sym_float,
sym_char,
STATE(85), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4634] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(367), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(369), 2,
sym_float,
sym_char,
STATE(89), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4679] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(371), 1,
anon_sym_LBRACE,
STATE(178), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[4738] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(373), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(375), 2,
sym_float,
sym_char,
STATE(93), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4783] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(377), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(379), 2,
sym_float,
sym_char,
STATE(70), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[4828] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(371), 1,
anon_sym_LBRACE,
STATE(174), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[4887] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(381), 1,
anon_sym_LBRACE,
STATE(6), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[4946] = 4,
ACTIONS(221), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(209), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(203), 15,
ts_builtin_sym_end,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[4979] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(383), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(385), 2,
sym_float,
sym_char,
STATE(54), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5024] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(387), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(389), 2,
sym_float,
sym_char,
STATE(55), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5069] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(391), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(393), 2,
sym_float,
sym_char,
STATE(56), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5114] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(395), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(397), 2,
sym_float,
sym_char,
STATE(57), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5159] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(399), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(401), 2,
sym_float,
sym_char,
STATE(58), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5204] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(403), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(405), 2,
sym_float,
sym_char,
STATE(59), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5249] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(407), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(409), 2,
sym_float,
sym_char,
STATE(53), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5294] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(411), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(413), 2,
sym_float,
sym_char,
STATE(60), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5339] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(415), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(417), 2,
sym_float,
sym_char,
STATE(62), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5384] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(419), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(421), 2,
sym_float,
sym_char,
STATE(61), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5429] = 4,
ACTIONS(207), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(209), 6,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
anon_sym_PIPE,
anon_sym_AMP,
ACTIONS(203), 15,
anon_sym_RBRACE,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_PERCENT,
anon_sym_STAR_STAR,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
anon_sym_LT_LT,
anon_sym_GT_GT,
anon_sym_CARET,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_as,
[5462] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(423), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(425), 2,
sym_float,
sym_char,
STATE(63), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5507] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(427), 1,
anon_sym_LBRACE,
STATE(181), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[5566] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(305), 1,
anon_sym_LBRACE,
STATE(48), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[5625] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(427), 1,
anon_sym_LBRACE,
STATE(183), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[5684] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(429), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(431), 2,
sym_float,
sym_char,
STATE(67), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5729] = 17,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(433), 1,
anon_sym_LBRACE,
STATE(8), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[5788] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(435), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(437), 2,
sym_float,
sym_char,
STATE(152), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5833] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(439), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(441), 2,
sym_float,
sym_char,
STATE(158), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5878] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(443), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(445), 2,
sym_float,
sym_char,
STATE(108), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5923] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(447), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(449), 2,
sym_float,
sym_char,
STATE(154), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[5968] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(451), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(453), 2,
sym_float,
sym_char,
STATE(155), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6013] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(455), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(457), 2,
sym_float,
sym_char,
STATE(156), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6058] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(459), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(461), 2,
sym_float,
sym_char,
STATE(157), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6103] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(463), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(465), 2,
sym_float,
sym_char,
STATE(109), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6148] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(467), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(469), 2,
sym_float,
sym_char,
STATE(111), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6193] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(471), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(473), 2,
sym_float,
sym_char,
STATE(163), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6238] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(475), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(477), 2,
sym_float,
sym_char,
STATE(165), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6283] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(479), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(481), 2,
sym_float,
sym_char,
STATE(146), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6328] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(483), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(485), 2,
sym_float,
sym_char,
STATE(131), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6373] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(487), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(489), 2,
sym_float,
sym_char,
STATE(134), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6418] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(491), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(493), 2,
sym_float,
sym_char,
STATE(135), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6463] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(495), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(497), 2,
sym_float,
sym_char,
STATE(136), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6508] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(499), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(501), 2,
sym_float,
sym_char,
STATE(137), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6553] = 10,
ACTIONS(9), 1,
anon_sym_LPAREN,
ACTIONS(31), 1,
sym_ident,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(307), 1,
anon_sym_if,
ACTIONS(503), 1,
sym_int,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(29), 2,
anon_sym_BANG,
anon_sym_DASH,
ACTIONS(37), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(505), 2,
sym_float,
sym_char,
STATE(143), 11,
sym_block,
sym__expression,
sym__expr_with_block,
sym_if_expr,
sym__expr_without_block,
sym_prefix_expr,
sym_infix_expr,
sym_assign_expr,
sym_call_expr,
sym_cast_expr,
sym_bool,
[6598] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(507), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6654] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(509), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6710] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(511), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6766] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(513), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6822] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(515), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6878] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(517), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6934] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(519), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[6990] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(521), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7046] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(523), 1,
ts_builtin_sym_end,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7102] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(525), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7158] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(527), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7214] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(529), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7270] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(531), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7326] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(533), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7382] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(535), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7438] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(537), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7494] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(539), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7550] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(541), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7606] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(543), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7662] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(545), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7718] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(547), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7774] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(549), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7830] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(551), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7886] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(553), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7942] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(555), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[7998] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(557), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8054] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(559), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8110] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(561), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8166] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(563), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8222] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(565), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8278] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(567), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8334] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(569), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8390] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(571), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8446] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(573), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8502] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(575), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8558] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(577), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8614] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(579), 1,
anon_sym_RBRACE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8670] = 16,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(581), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8726] = 16,
ACTIONS(63), 1,
ts_builtin_sym_end,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[8782] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(161), 8,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(163), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8811] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(169), 8,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(171), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8840] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(165), 8,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(167), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8869] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(169), 8,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(171), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8898] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(583), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(585), 13,
anon_sym_fn,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8927] = 4,
ACTIONS(591), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(587), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(589), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8958] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(593), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(595), 13,
anon_sym_fn,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[8987] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(597), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(599), 13,
anon_sym_fn,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9016] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(601), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(603), 13,
anon_sym_fn,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9045] = 4,
ACTIONS(609), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(605), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(607), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9076] = 4,
ACTIONS(615), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(611), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(613), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9107] = 15,
ACTIONS(247), 1,
anon_sym_PERCENT,
ACTIONS(249), 1,
anon_sym_STAR_STAR,
ACTIONS(253), 1,
anon_sym_as,
ACTIONS(265), 1,
anon_sym_PIPE,
ACTIONS(267), 1,
anon_sym_CARET,
ACTIONS(269), 1,
anon_sym_AMP,
ACTIONS(271), 1,
anon_sym_AMP_AMP,
ACTIONS(273), 1,
anon_sym_PIPE_PIPE,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(243), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(245), 2,
anon_sym_STAR,
anon_sym_SLASH,
ACTIONS(257), 2,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
ACTIONS(259), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(261), 2,
anon_sym_LT_EQ,
anon_sym_GT_EQ,
ACTIONS(263), 2,
anon_sym_LT_LT,
anon_sym_GT_GT,
[9160] = 4,
ACTIONS(617), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(587), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(589), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9191] = 5,
ACTIONS(619), 1,
ts_builtin_sym_end,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(621), 2,
anon_sym_fn,
anon_sym_let,
ACTIONS(623), 6,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(625), 11,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9224] = 4,
ACTIONS(627), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(605), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(607), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9255] = 4,
ACTIONS(629), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(611), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(613), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9286] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(157), 8,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(159), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9315] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(161), 8,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(163), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9344] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(165), 8,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(167), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9373] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(157), 8,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(159), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9402] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(601), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(603), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9430] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(593), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(595), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9458] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(583), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(585), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9486] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(597), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(599), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9514] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(631), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(633), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9542] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(635), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(637), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9570] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(639), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(641), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9598] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(635), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(637), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9626] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(643), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(645), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9654] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(647), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(649), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9682] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(651), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(653), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9710] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(651), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(653), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9738] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(655), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(657), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9766] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(659), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(661), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9794] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(639), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(641), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9822] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(655), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(657), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9850] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(659), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(661), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9878] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(601), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(603), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9906] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(583), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(585), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9934] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(593), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(595), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9962] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(597), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(599), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[9990] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(631), 7,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(633), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[10018] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(647), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(649), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[10046] = 3,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(643), 7,
ts_builtin_sym_end,
anon_sym_LPAREN,
anon_sym_LBRACE,
anon_sym_BANG,
anon_sym_DASH,
sym_float,
sym_char,
ACTIONS(645), 12,
anon_sym_let,
anon_sym_return,
anon_sym_loop,
anon_sym_while,
anon_sym_for,
anon_sym_break,
anon_sym_continue,
anon_sym_if,
sym_ident,
sym_int,
anon_sym_true,
anon_sym_false,
[10074] = 5,
ACTIONS(663), 1,
ts_builtin_sym_end,
ACTIONS(665), 1,
anon_sym_fn,
ACTIONS(668), 1,
anon_sym_let,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
STATE(213), 4,
sym__item,
sym_function_definition,
sym_let_stmt,
aux_sym_program_repeat1,
[10094] = 5,
ACTIONS(63), 1,
ts_builtin_sym_end,
ACTIONS(671), 1,
anon_sym_fn,
ACTIONS(673), 1,
anon_sym_let,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
STATE(213), 4,
sym__item,
sym_function_definition,
sym_let_stmt,
aux_sym_program_repeat1,
[10114] = 4,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(675), 1,
anon_sym_if,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
STATE(68), 2,
sym_block,
sym_if_expr,
[10129] = 4,
ACTIONS(11), 1,
anon_sym_LBRACE,
ACTIONS(677), 1,
anon_sym_if,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
STATE(30), 2,
sym_block,
sym_if_expr,
[10144] = 5,
ACTIONS(679), 1,
anon_sym_RPAREN,
ACTIONS(681), 1,
anon_sym_mut,
ACTIONS(683), 1,
sym_ident,
STATE(277), 1,
sym_parameter,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10161] = 5,
ACTIONS(681), 1,
anon_sym_mut,
ACTIONS(683), 1,
sym_ident,
ACTIONS(685), 1,
anon_sym_RPAREN,
STATE(239), 1,
sym_parameter,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10178] = 4,
ACTIONS(39), 1,
anon_sym_LBRACE,
ACTIONS(687), 1,
anon_sym_if,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
STATE(41), 2,
sym_block,
sym_if_expr,
[10193] = 5,
ACTIONS(681), 1,
anon_sym_mut,
ACTIONS(683), 1,
sym_ident,
ACTIONS(689), 1,
anon_sym_RPAREN,
STATE(277), 1,
sym_parameter,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10210] = 4,
ACTIONS(361), 1,
anon_sym_RPAREN,
ACTIONS(691), 1,
anon_sym_COMMA,
STATE(221), 1,
aux_sym_call_expr_repeat1,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10224] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(274), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10238] = 4,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(698), 1,
anon_sym_DASH_GT,
STATE(236), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10252] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(64), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10266] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(271), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10280] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(700), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10290] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(702), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10300] = 4,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(704), 1,
anon_sym_DASH_GT,
STATE(226), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10314] = 4,
ACTIONS(681), 1,
anon_sym_mut,
ACTIONS(683), 1,
sym_ident,
STATE(277), 1,
sym_parameter,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10328] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(706), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10338] = 4,
ACTIONS(708), 1,
anon_sym_COMMA,
ACTIONS(711), 1,
anon_sym_RPAREN,
STATE(231), 1,
aux_sym_function_definition_repeat1,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10352] = 4,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(713), 1,
anon_sym_DASH_GT,
STATE(256), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10366] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(278), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10380] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(297), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10394] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(715), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10404] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(717), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10414] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(719), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10424] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(261), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10438] = 4,
ACTIONS(721), 1,
anon_sym_COMMA,
ACTIONS(723), 1,
anon_sym_RPAREN,
STATE(246), 1,
aux_sym_function_definition_repeat1,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10452] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(601), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10462] = 4,
ACTIONS(305), 1,
anon_sym_LBRACE,
ACTIONS(725), 1,
anon_sym_DASH_GT,
STATE(235), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10476] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(583), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10486] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(593), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10496] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(597), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10506] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(263), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10520] = 4,
ACTIONS(689), 1,
anon_sym_RPAREN,
ACTIONS(727), 1,
anon_sym_COMMA,
STATE(231), 1,
aux_sym_function_definition_repeat1,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10534] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(300), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10548] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(279), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10562] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(286), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10576] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(729), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10586] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(283), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10600] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(284), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10614] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(287), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10628] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(288), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10642] = 4,
ACTIONS(694), 1,
anon_sym_LPAREN,
ACTIONS(696), 1,
sym_ident,
STATE(273), 1,
sym_type,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10656] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(731), 3,
ts_builtin_sym_end,
anon_sym_fn,
anon_sym_let,
[10666] = 4,
ACTIONS(303), 1,
anon_sym_RPAREN,
ACTIONS(733), 1,
anon_sym_COMMA,
STATE(221), 1,
aux_sym_call_expr_repeat1,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10680] = 3,
ACTIONS(735), 1,
anon_sym_mut,
ACTIONS(737), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10691] = 3,
ACTIONS(371), 1,
anon_sym_LBRACE,
STATE(184), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10702] = 3,
ACTIONS(739), 1,
anon_sym_mut,
ACTIONS(741), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10713] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(743), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[10722] = 3,
ACTIONS(427), 1,
anon_sym_LBRACE,
STATE(179), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10733] = 3,
ACTIONS(305), 1,
anon_sym_LBRACE,
STATE(230), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10744] = 3,
ACTIONS(745), 1,
anon_sym_COLON,
ACTIONS(747), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10755] = 3,
ACTIONS(749), 1,
anon_sym_COLON,
ACTIONS(751), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10766] = 3,
ACTIONS(753), 1,
anon_sym_COLON,
ACTIONS(755), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10777] = 3,
ACTIONS(757), 1,
anon_sym_COLON,
ACTIONS(759), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10788] = 3,
ACTIONS(761), 1,
anon_sym_COLON,
ACTIONS(763), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10799] = 3,
ACTIONS(765), 1,
anon_sym_COLON,
ACTIONS(767), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10810] = 3,
ACTIONS(769), 1,
anon_sym_mut,
ACTIONS(771), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10821] = 3,
ACTIONS(305), 1,
anon_sym_LBRACE,
STATE(250), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10832] = 3,
ACTIONS(773), 1,
anon_sym_COLON,
ACTIONS(775), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10843] = 3,
ACTIONS(305), 1,
anon_sym_LBRACE,
STATE(237), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10854] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(777), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[10863] = 3,
ACTIONS(779), 1,
anon_sym_COLON,
ACTIONS(781), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10874] = 3,
ACTIONS(783), 1,
anon_sym_mut,
ACTIONS(785), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10885] = 2,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
ACTIONS(711), 2,
anon_sym_COMMA,
anon_sym_RPAREN,
[10894] = 3,
ACTIONS(305), 1,
anon_sym_LBRACE,
STATE(227), 1,
sym_block,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10905] = 2,
ACTIONS(787), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10913] = 2,
ACTIONS(789), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10921] = 2,
ACTIONS(791), 1,
ts_builtin_sym_end,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10929] = 2,
ACTIONS(793), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10937] = 2,
ACTIONS(795), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10945] = 2,
ACTIONS(797), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10953] = 2,
ACTIONS(799), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10961] = 2,
ACTIONS(801), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10969] = 2,
ACTIONS(803), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10977] = 2,
ACTIONS(805), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10985] = 2,
ACTIONS(807), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[10993] = 2,
ACTIONS(809), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11001] = 2,
ACTIONS(811), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11009] = 2,
ACTIONS(813), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11017] = 2,
ACTIONS(815), 1,
anon_sym_SEMI,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11025] = 2,
ACTIONS(817), 1,
anon_sym_LPAREN,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11033] = 2,
ACTIONS(819), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11041] = 2,
ACTIONS(821), 1,
anon_sym_RPAREN,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11049] = 2,
ACTIONS(823), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11057] = 2,
ACTIONS(825), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11065] = 2,
ACTIONS(827), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11073] = 2,
ACTIONS(829), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11081] = 2,
ACTIONS(831), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11089] = 2,
ACTIONS(833), 1,
anon_sym_COLON,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11097] = 2,
ACTIONS(835), 1,
anon_sym_COLON,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11105] = 2,
ACTIONS(837), 1,
anon_sym_EQ,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
[11113] = 2,
ACTIONS(839), 1,
sym_ident,
ACTIONS(3), 2,
sym_line_comment,
sym_block_comment,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 85,
[SMALL_STATE(4)] = 170,
[SMALL_STATE(5)] = 255,
[SMALL_STATE(6)] = 340,
[SMALL_STATE(7)] = 391,
[SMALL_STATE(8)] = 476,
[SMALL_STATE(9)] = 527,
[SMALL_STATE(10)] = 576,
[SMALL_STATE(11)] = 625,
[SMALL_STATE(12)] = 674,
[SMALL_STATE(13)] = 723,
[SMALL_STATE(14)] = 772,
[SMALL_STATE(15)] = 821,
[SMALL_STATE(16)] = 870,
[SMALL_STATE(17)] = 919,
[SMALL_STATE(18)] = 1004,
[SMALL_STATE(19)] = 1089,
[SMALL_STATE(20)] = 1174,
[SMALL_STATE(21)] = 1259,
[SMALL_STATE(22)] = 1344,
[SMALL_STATE(23)] = 1429,
[SMALL_STATE(24)] = 1514,
[SMALL_STATE(25)] = 1599,
[SMALL_STATE(26)] = 1684,
[SMALL_STATE(27)] = 1769,
[SMALL_STATE(28)] = 1854,
[SMALL_STATE(29)] = 1939,
[SMALL_STATE(30)] = 1987,
[SMALL_STATE(31)] = 2035,
[SMALL_STATE(32)] = 2089,
[SMALL_STATE(33)] = 2143,
[SMALL_STATE(34)] = 2191,
[SMALL_STATE(35)] = 2245,
[SMALL_STATE(36)] = 2293,
[SMALL_STATE(37)] = 2341,
[SMALL_STATE(38)] = 2389,
[SMALL_STATE(39)] = 2443,
[SMALL_STATE(40)] = 2491,
[SMALL_STATE(41)] = 2539,
[SMALL_STATE(42)] = 2587,
[SMALL_STATE(43)] = 2641,
[SMALL_STATE(44)] = 2689,
[SMALL_STATE(45)] = 2727,
[SMALL_STATE(46)] = 2765,
[SMALL_STATE(47)] = 2803,
[SMALL_STATE(48)] = 2841,
[SMALL_STATE(49)] = 2879,
[SMALL_STATE(50)] = 2915,
[SMALL_STATE(51)] = 2951,
[SMALL_STATE(52)] = 2986,
[SMALL_STATE(53)] = 3021,
[SMALL_STATE(54)] = 3066,
[SMALL_STATE(55)] = 3127,
[SMALL_STATE(56)] = 3170,
[SMALL_STATE(57)] = 3209,
[SMALL_STATE(58)] = 3246,
[SMALL_STATE(59)] = 3297,
[SMALL_STATE(60)] = 3344,
[SMALL_STATE(61)] = 3401,
[SMALL_STATE(62)] = 3454,
[SMALL_STATE(63)] = 3509,
[SMALL_STATE(64)] = 3566,
[SMALL_STATE(65)] = 3601,
[SMALL_STATE(66)] = 3636,
[SMALL_STATE(67)] = 3671,
[SMALL_STATE(68)] = 3730,
[SMALL_STATE(69)] = 3765,
[SMALL_STATE(70)] = 3800,
[SMALL_STATE(71)] = 3835,
[SMALL_STATE(72)] = 3870,
[SMALL_STATE(73)] = 3932,
[SMALL_STATE(74)] = 3980,
[SMALL_STATE(75)] = 4028,
[SMALL_STATE(76)] = 4076,
[SMALL_STATE(77)] = 4124,
[SMALL_STATE(78)] = 4172,
[SMALL_STATE(79)] = 4217,
[SMALL_STATE(80)] = 4262,
[SMALL_STATE(81)] = 4307,
[SMALL_STATE(82)] = 4352,
[SMALL_STATE(83)] = 4397,
[SMALL_STATE(84)] = 4442,
[SMALL_STATE(85)] = 4487,
[SMALL_STATE(86)] = 4544,
[SMALL_STATE(87)] = 4589,
[SMALL_STATE(88)] = 4634,
[SMALL_STATE(89)] = 4679,
[SMALL_STATE(90)] = 4738,
[SMALL_STATE(91)] = 4783,
[SMALL_STATE(92)] = 4828,
[SMALL_STATE(93)] = 4887,
[SMALL_STATE(94)] = 4946,
[SMALL_STATE(95)] = 4979,
[SMALL_STATE(96)] = 5024,
[SMALL_STATE(97)] = 5069,
[SMALL_STATE(98)] = 5114,
[SMALL_STATE(99)] = 5159,
[SMALL_STATE(100)] = 5204,
[SMALL_STATE(101)] = 5249,
[SMALL_STATE(102)] = 5294,
[SMALL_STATE(103)] = 5339,
[SMALL_STATE(104)] = 5384,
[SMALL_STATE(105)] = 5429,
[SMALL_STATE(106)] = 5462,
[SMALL_STATE(107)] = 5507,
[SMALL_STATE(108)] = 5566,
[SMALL_STATE(109)] = 5625,
[SMALL_STATE(110)] = 5684,
[SMALL_STATE(111)] = 5729,
[SMALL_STATE(112)] = 5788,
[SMALL_STATE(113)] = 5833,
[SMALL_STATE(114)] = 5878,
[SMALL_STATE(115)] = 5923,
[SMALL_STATE(116)] = 5968,
[SMALL_STATE(117)] = 6013,
[SMALL_STATE(118)] = 6058,
[SMALL_STATE(119)] = 6103,
[SMALL_STATE(120)] = 6148,
[SMALL_STATE(121)] = 6193,
[SMALL_STATE(122)] = 6238,
[SMALL_STATE(123)] = 6283,
[SMALL_STATE(124)] = 6328,
[SMALL_STATE(125)] = 6373,
[SMALL_STATE(126)] = 6418,
[SMALL_STATE(127)] = 6463,
[SMALL_STATE(128)] = 6508,
[SMALL_STATE(129)] = 6553,
[SMALL_STATE(130)] = 6598,
[SMALL_STATE(131)] = 6654,
[SMALL_STATE(132)] = 6710,
[SMALL_STATE(133)] = 6766,
[SMALL_STATE(134)] = 6822,
[SMALL_STATE(135)] = 6878,
[SMALL_STATE(136)] = 6934,
[SMALL_STATE(137)] = 6990,
[SMALL_STATE(138)] = 7046,
[SMALL_STATE(139)] = 7102,
[SMALL_STATE(140)] = 7158,
[SMALL_STATE(141)] = 7214,
[SMALL_STATE(142)] = 7270,
[SMALL_STATE(143)] = 7326,
[SMALL_STATE(144)] = 7382,
[SMALL_STATE(145)] = 7438,
[SMALL_STATE(146)] = 7494,
[SMALL_STATE(147)] = 7550,
[SMALL_STATE(148)] = 7606,
[SMALL_STATE(149)] = 7662,
[SMALL_STATE(150)] = 7718,
[SMALL_STATE(151)] = 7774,
[SMALL_STATE(152)] = 7830,
[SMALL_STATE(153)] = 7886,
[SMALL_STATE(154)] = 7942,
[SMALL_STATE(155)] = 7998,
[SMALL_STATE(156)] = 8054,
[SMALL_STATE(157)] = 8110,
[SMALL_STATE(158)] = 8166,
[SMALL_STATE(159)] = 8222,
[SMALL_STATE(160)] = 8278,
[SMALL_STATE(161)] = 8334,
[SMALL_STATE(162)] = 8390,
[SMALL_STATE(163)] = 8446,
[SMALL_STATE(164)] = 8502,
[SMALL_STATE(165)] = 8558,
[SMALL_STATE(166)] = 8614,
[SMALL_STATE(167)] = 8670,
[SMALL_STATE(168)] = 8726,
[SMALL_STATE(169)] = 8782,
[SMALL_STATE(170)] = 8811,
[SMALL_STATE(171)] = 8840,
[SMALL_STATE(172)] = 8869,
[SMALL_STATE(173)] = 8898,
[SMALL_STATE(174)] = 8927,
[SMALL_STATE(175)] = 8958,
[SMALL_STATE(176)] = 8987,
[SMALL_STATE(177)] = 9016,
[SMALL_STATE(178)] = 9045,
[SMALL_STATE(179)] = 9076,
[SMALL_STATE(180)] = 9107,
[SMALL_STATE(181)] = 9160,
[SMALL_STATE(182)] = 9191,
[SMALL_STATE(183)] = 9224,
[SMALL_STATE(184)] = 9255,
[SMALL_STATE(185)] = 9286,
[SMALL_STATE(186)] = 9315,
[SMALL_STATE(187)] = 9344,
[SMALL_STATE(188)] = 9373,
[SMALL_STATE(189)] = 9402,
[SMALL_STATE(190)] = 9430,
[SMALL_STATE(191)] = 9458,
[SMALL_STATE(192)] = 9486,
[SMALL_STATE(193)] = 9514,
[SMALL_STATE(194)] = 9542,
[SMALL_STATE(195)] = 9570,
[SMALL_STATE(196)] = 9598,
[SMALL_STATE(197)] = 9626,
[SMALL_STATE(198)] = 9654,
[SMALL_STATE(199)] = 9682,
[SMALL_STATE(200)] = 9710,
[SMALL_STATE(201)] = 9738,
[SMALL_STATE(202)] = 9766,
[SMALL_STATE(203)] = 9794,
[SMALL_STATE(204)] = 9822,
[SMALL_STATE(205)] = 9850,
[SMALL_STATE(206)] = 9878,
[SMALL_STATE(207)] = 9906,
[SMALL_STATE(208)] = 9934,
[SMALL_STATE(209)] = 9962,
[SMALL_STATE(210)] = 9990,
[SMALL_STATE(211)] = 10018,
[SMALL_STATE(212)] = 10046,
[SMALL_STATE(213)] = 10074,
[SMALL_STATE(214)] = 10094,
[SMALL_STATE(215)] = 10114,
[SMALL_STATE(216)] = 10129,
[SMALL_STATE(217)] = 10144,
[SMALL_STATE(218)] = 10161,
[SMALL_STATE(219)] = 10178,
[SMALL_STATE(220)] = 10193,
[SMALL_STATE(221)] = 10210,
[SMALL_STATE(222)] = 10224,
[SMALL_STATE(223)] = 10238,
[SMALL_STATE(224)] = 10252,
[SMALL_STATE(225)] = 10266,
[SMALL_STATE(226)] = 10280,
[SMALL_STATE(227)] = 10290,
[SMALL_STATE(228)] = 10300,
[SMALL_STATE(229)] = 10314,
[SMALL_STATE(230)] = 10328,
[SMALL_STATE(231)] = 10338,
[SMALL_STATE(232)] = 10352,
[SMALL_STATE(233)] = 10366,
[SMALL_STATE(234)] = 10380,
[SMALL_STATE(235)] = 10394,
[SMALL_STATE(236)] = 10404,
[SMALL_STATE(237)] = 10414,
[SMALL_STATE(238)] = 10424,
[SMALL_STATE(239)] = 10438,
[SMALL_STATE(240)] = 10452,
[SMALL_STATE(241)] = 10462,
[SMALL_STATE(242)] = 10476,
[SMALL_STATE(243)] = 10486,
[SMALL_STATE(244)] = 10496,
[SMALL_STATE(245)] = 10506,
[SMALL_STATE(246)] = 10520,
[SMALL_STATE(247)] = 10534,
[SMALL_STATE(248)] = 10548,
[SMALL_STATE(249)] = 10562,
[SMALL_STATE(250)] = 10576,
[SMALL_STATE(251)] = 10586,
[SMALL_STATE(252)] = 10600,
[SMALL_STATE(253)] = 10614,
[SMALL_STATE(254)] = 10628,
[SMALL_STATE(255)] = 10642,
[SMALL_STATE(256)] = 10656,
[SMALL_STATE(257)] = 10666,
[SMALL_STATE(258)] = 10680,
[SMALL_STATE(259)] = 10691,
[SMALL_STATE(260)] = 10702,
[SMALL_STATE(261)] = 10713,
[SMALL_STATE(262)] = 10722,
[SMALL_STATE(263)] = 10733,
[SMALL_STATE(264)] = 10744,
[SMALL_STATE(265)] = 10755,
[SMALL_STATE(266)] = 10766,
[SMALL_STATE(267)] = 10777,
[SMALL_STATE(268)] = 10788,
[SMALL_STATE(269)] = 10799,
[SMALL_STATE(270)] = 10810,
[SMALL_STATE(271)] = 10821,
[SMALL_STATE(272)] = 10832,
[SMALL_STATE(273)] = 10843,
[SMALL_STATE(274)] = 10854,
[SMALL_STATE(275)] = 10863,
[SMALL_STATE(276)] = 10874,
[SMALL_STATE(277)] = 10885,
[SMALL_STATE(278)] = 10894,
[SMALL_STATE(279)] = 10905,
[SMALL_STATE(280)] = 10913,
[SMALL_STATE(281)] = 10921,
[SMALL_STATE(282)] = 10929,
[SMALL_STATE(283)] = 10937,
[SMALL_STATE(284)] = 10945,
[SMALL_STATE(285)] = 10953,
[SMALL_STATE(286)] = 10961,
[SMALL_STATE(287)] = 10969,
[SMALL_STATE(288)] = 10977,
[SMALL_STATE(289)] = 10985,
[SMALL_STATE(290)] = 10993,
[SMALL_STATE(291)] = 11001,
[SMALL_STATE(292)] = 11009,
[SMALL_STATE(293)] = 11017,
[SMALL_STATE(294)] = 11025,
[SMALL_STATE(295)] = 11033,
[SMALL_STATE(296)] = 11041,
[SMALL_STATE(297)] = 11049,
[SMALL_STATE(298)] = 11057,
[SMALL_STATE(299)] = 11065,
[SMALL_STATE(300)] = 11073,
[SMALL_STATE(301)] = 11081,
[SMALL_STATE(302)] = 11089,
[SMALL_STATE(303)] = 11097,
[SMALL_STATE(304)] = 11105,
[SMALL_STATE(305)] = 11113,
};
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 = true}}, REDUCE(sym_program, 0, 0, 0),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260),
[15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259),
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90),
[29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94),
[35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
[39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19),
[41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262),
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78),
[51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305),
[53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289),
[55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292),
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120),
[59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105),
[63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0),
[65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276),
[67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[69] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0),
[71] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(113),
[74] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(28),
[77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(276),
[80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(74),
[83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(259),
[86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(81),
[89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(282),
[92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(285),
[95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(293),
[98] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(90),
[101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(91),
[104] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(32),
[107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(94),
[110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(94),
[113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(71),
[116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expr, 3, 0, 7),
[118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expr, 3, 0, 7),
[120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216),
[122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(19),
[125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(270),
[128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(77),
[131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(262),
[134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(78),
[137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(305),
[140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(289),
[143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(292),
[146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(120),
[149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(105),
[152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat2, 2, 0, 0), SHIFT_REPEAT(105),
[155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219),
[157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0),
[159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0),
[161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 3),
[163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 3),
[165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 5),
[167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 5),
[169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 11),
[171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 11),
[173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187),
[185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171),
[187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9),
[189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11),
[191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15),
[195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expr, 5, 0, 15),
[199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expr, 5, 0, 15),
[201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 1, 0, 1),
[203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0),
[205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 1, 0, 1),
[207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194),
[209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0),
[211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_without_block, 1, 0, 0),
[213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95),
[217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_without_block, 1, 0, 0),
[219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 0),
[227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 0),
[229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0),
[231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0),
[233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_without_block, 3, 0, 0),
[235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_without_block, 3, 0, 0),
[237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 3, 0, 8),
[239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 3, 0, 8),
[241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expr, 3, 0, 10),
[243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96),
[245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97),
[247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expr, 3, 0, 10),
[253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assign_expr, 3, 0, 9),
[257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100),
[261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102),
[267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104),
[271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expr, 3, 0, 0),
[277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expr, 3, 0, 0),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 5, 0, 16),
[281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 5, 0, 16),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 4, 0, 12),
[285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 4, 0, 12),
[287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expr, 6, 0, 20),
[289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expr, 6, 0, 20),
[291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expr, 2, 0, 3),
[293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expr, 2, 0, 3),
[295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0),
[297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17),
[307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114),
[309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85),
[311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85),
[313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140),
[317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69),
[321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72),
[325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150),
[331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150),
[333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107),
[335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107),
[337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164),
[339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164),
[341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145),
[343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92),
[347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167),
[351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167),
[353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149),
[355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149),
[357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151),
[359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_call_expr_repeat1, 2, 0, 0),
[363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159),
[365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89),
[369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93),
[375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93),
[377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70),
[379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70),
[381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54),
[385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55),
[389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56),
[393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58),
[403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53),
[409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60),
[413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62),
[417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61),
[421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63),
[425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67),
[431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26),
[435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152),
[437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158),
[441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158),
[443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108),
[445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154),
[449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154),
[451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155),
[453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155),
[455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156),
[457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156),
[459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157),
[461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157),
[463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109),
[465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109),
[467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163),
[473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163),
[475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165),
[477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165),
[479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146),
[481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146),
[483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131),
[485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135),
[493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136),
[497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
[501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143),
[505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186),
[513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170),
[515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189),
[517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191),
[519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0),
[525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169),
[527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199),
[529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84),
[539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243),
[541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175),
[547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200),
[549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88),
[551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173),
[553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207),
[559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209),
[563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119),
[577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79),
[583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_stmt, 6, 0, 19),
[585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_stmt, 6, 0, 19),
[587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 3, 0, 6),
[589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 3, 0, 6),
[591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202),
[593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_stmt, 7, 0, 24),
[595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_stmt, 7, 0, 24),
[597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_stmt, 8, 0, 27),
[599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_stmt, 8, 0, 27),
[601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_stmt, 5, 0, 14),
[603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_stmt, 5, 0, 14),
[605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 9, 0, 29),
[607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 9, 0, 29),
[609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193),
[611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_stmt, 2, 0, 2),
[613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_stmt, 2, 0, 2),
[615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__item, 1, 0, 0),
[621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__item, 1, 0, 0),
[623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0),
[625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0),
[627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210),
[629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204),
[631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_stmt, 10, 0, 29),
[633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_stmt, 10, 0, 29),
[635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_stmt, 2, 0, 4),
[637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_stmt, 2, 0, 4),
[639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 2, 0, 0),
[641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 2, 0, 0),
[643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_stmt, 2, 0, 0),
[645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_stmt, 2, 0, 0),
[647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_stmt, 2, 0, 0),
[649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_stmt, 2, 0, 0),
[651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_stmt, 3, 0, 3),
[653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_stmt, 3, 0, 3),
[655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_stmt, 3, 0, 2),
[657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_stmt, 3, 0, 2),
[659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_stmt, 4, 0, 6),
[661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_stmt, 4, 0, 6),
[663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0),
[665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(280),
[668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(258),
[671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280),
[673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223),
[681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301),
[683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303),
[685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228),
[687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_call_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(87),
[694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 13),
[702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 10, 0, 30),
[704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225),
[706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 25),
[708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(229),
[711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_definition_repeat1, 2, 0, 0),
[713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245),
[715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 23),
[717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, 0, 26),
[719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, 0, 28),
[721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220),
[723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232),
[725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255),
[727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, 0, 21),
[731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 18),
[733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295),
[737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266),
[739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291),
[741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275),
[743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 22),
[745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247),
[747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251),
[755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121),
[757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252),
[759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254),
[767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290),
[771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264),
[773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112),
[777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 17),
[779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234),
[781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299),
[785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268),
[787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118),
[789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294),
[791] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211),
[801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86),
[803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198),
[809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265),
[811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272),
[813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197),
[815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218),
[819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267),
[821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83),
[825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80),
[827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269),
[829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302),
[833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222),
[837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82),
[839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef TREE_SITTER_HIDE_SYMBOLS
#define TS_PUBLIC
#elif defined(_WIN32)
#define TS_PUBLIC __declspec(dllexport)
#else
#define TS_PUBLIC __attribute__((visibility("default")))
#endif
TS_PUBLIC const TSLanguage *tree_sitter_rush(void) {
static const TSLanguage language = {
.abi_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,
.supertype_count = SUPERTYPE_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = (const void*)ts_lex_modes,
.lex_fn = ts_lex,
.primary_state_ids = ts_primary_state_ids,
.name = "rush",
.max_reserved_word_set_size = 0,
.metadata = {
.major_version = 0,
.minor_version = 2,
.patch_version = 0,
},
};
return &language;
}
#ifdef __cplusplus
}
#endif