tree-sitter-tiger/src/parser.c

5572 lines
141 KiB
C
Raw Normal View History

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 13
#define STATE_COUNT 148
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 87
#define ALIAS_COUNT 0
#define TOKEN_COUNT 49
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 26
2022-06-01 20:23:04 +02:00
#define MAX_ALIAS_SEQUENCE_LENGTH 8
#define PRODUCTION_ID_COUNT 36
enum {
sym_identifier = 1,
sym_comment = 2,
sym_nil_literal = 3,
sym_integer_literal = 4,
anon_sym_DQUOTE = 5,
aux_sym_string_literal_token1 = 6,
sym_escape_sequence = 7,
anon_sym_DOT = 8,
anon_sym_LBRACK = 9,
anon_sym_RBRACK = 10,
anon_sym_LPAREN = 11,
anon_sym_COMMA = 12,
anon_sym_RPAREN = 13,
anon_sym_DASH = 14,
anon_sym_STAR = 15,
anon_sym_SLASH = 16,
anon_sym_PLUS = 17,
anon_sym_GT_EQ = 18,
anon_sym_LT_EQ = 19,
anon_sym_EQ = 20,
anon_sym_LT_GT = 21,
anon_sym_LT = 22,
anon_sym_GT = 23,
anon_sym_AMP = 24,
anon_sym_PIPE = 25,
anon_sym_SEMI = 26,
anon_sym_of = 27,
anon_sym_LBRACE = 28,
anon_sym_RBRACE = 29,
anon_sym_COLON_EQ = 30,
anon_sym_if = 31,
anon_sym_then = 32,
anon_sym_else = 33,
anon_sym_while = 34,
anon_sym_do = 35,
anon_sym_for = 36,
anon_sym_to = 37,
sym_break_expression = 38,
anon_sym_let = 39,
anon_sym_in = 40,
anon_sym_end = 41,
anon_sym_type = 42,
anon_sym_COLON = 43,
anon_sym_array = 44,
anon_sym_function = 45,
anon_sym_primitive = 46,
anon_sym_var = 47,
anon_sym_import = 48,
sym_source_file = 49,
sym__expr = 50,
sym_string_literal = 51,
sym__lvalue = 52,
sym_record_value = 53,
sym_array_value = 54,
sym_function_call = 55,
sym_unary_expression = 56,
sym_binary_expression = 57,
sym_sequence_expression = 58,
sym_array_expression = 59,
sym_record_expression = 60,
sym_assignment_expression = 61,
sym_if_expression = 62,
sym_while_expression = 63,
sym_for_expression = 64,
sym_let_expression = 65,
aux_sym__declaration_chunks = 66,
sym__declaration_chunk = 67,
sym_type_declaration = 68,
sym__type = 69,
sym_type_alias = 70,
sym_record_type = 71,
sym__typed_field = 72,
sym_array_type = 73,
sym_function_declaration = 74,
sym_primitive_declaration = 75,
sym__function_declaration_common = 76,
sym_parameters = 77,
sym_variable_declaration = 78,
sym_import_declaration = 79,
aux_sym_string_literal_repeat1 = 80,
aux_sym_function_call_repeat1 = 81,
aux_sym_sequence_expression_repeat1 = 82,
aux_sym_record_expression_repeat1 = 83,
aux_sym__declaration_chunk_repeat1 = 84,
aux_sym__declaration_chunk_repeat2 = 85,
aux_sym_record_type_repeat1 = 86,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[sym_comment] = "comment",
[sym_nil_literal] = "nil_literal",
2022-06-01 19:33:42 +02:00
[sym_integer_literal] = "integer_literal",
[anon_sym_DQUOTE] = "\"",
[aux_sym_string_literal_token1] = "string_literal_token1",
[sym_escape_sequence] = "escape_sequence",
2022-06-01 20:07:00 +02:00
[anon_sym_DOT] = ".",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
2022-06-01 19:58:40 +02:00
[anon_sym_LPAREN] = "(",
[anon_sym_COMMA] = ",",
[anon_sym_RPAREN] = ")",
2022-06-01 19:34:31 +02:00
[anon_sym_DASH] = "operator",
[anon_sym_STAR] = "operator",
[anon_sym_SLASH] = "operator",
[anon_sym_PLUS] = "operator",
[anon_sym_GT_EQ] = "operator",
[anon_sym_LT_EQ] = "operator",
2022-06-01 19:54:09 +02:00
[anon_sym_EQ] = "=",
2022-06-01 19:34:31 +02:00
[anon_sym_LT_GT] = "operator",
[anon_sym_LT] = "operator",
[anon_sym_GT] = "operator",
[anon_sym_AMP] = "operator",
[anon_sym_PIPE] = "operator",
[anon_sym_SEMI] = ";",
2022-06-01 19:48:54 +02:00
[anon_sym_of] = "of",
2022-06-01 19:54:09 +02:00
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
2022-06-01 20:11:52 +02:00
[anon_sym_COLON_EQ] = ":=",
2022-06-01 20:18:10 +02:00
[anon_sym_if] = "if",
[anon_sym_then] = "then",
[anon_sym_else] = "else",
2022-06-01 20:19:56 +02:00
[anon_sym_while] = "while",
[anon_sym_do] = "do",
2022-06-01 20:23:04 +02:00
[anon_sym_for] = "for",
[anon_sym_to] = "to",
2022-06-01 20:23:46 +02:00
[sym_break_expression] = "break_expression",
2022-06-01 20:36:14 +02:00
[anon_sym_let] = "let",
[anon_sym_in] = "in",
[anon_sym_end] = "end",
[anon_sym_type] = "type",
2022-06-01 20:53:39 +02:00
[anon_sym_COLON] = ":",
2022-06-01 20:54:35 +02:00
[anon_sym_array] = "array",
2022-06-01 20:48:32 +02:00
[anon_sym_function] = "function",
[anon_sym_primitive] = "primitive",
[anon_sym_var] = "var",
2022-06-01 20:36:14 +02:00
[anon_sym_import] = "import",
[sym_source_file] = "source_file",
2022-06-01 19:33:42 +02:00
[sym__expr] = "_expr",
[sym_string_literal] = "string_literal",
2022-06-01 20:07:00 +02:00
[sym__lvalue] = "_lvalue",
[sym_record_value] = "record_value",
[sym_array_value] = "array_value",
2022-06-01 19:58:40 +02:00
[sym_function_call] = "function_call",
2022-06-01 19:34:31 +02:00
[sym_unary_expression] = "unary_expression",
[sym_binary_expression] = "binary_expression",
[sym_sequence_expression] = "sequence_expression",
2022-06-01 19:48:54 +02:00
[sym_array_expression] = "array_expression",
2022-06-01 19:54:09 +02:00
[sym_record_expression] = "record_expression",
2022-06-01 20:11:52 +02:00
[sym_assignment_expression] = "assignment_expression",
2022-06-01 20:18:10 +02:00
[sym_if_expression] = "if_expression",
2022-06-01 20:19:56 +02:00
[sym_while_expression] = "while_expression",
2022-06-01 20:23:04 +02:00
[sym_for_expression] = "for_expression",
2022-06-01 20:36:14 +02:00
[sym_let_expression] = "let_expression",
[aux_sym__declaration_chunks] = "_declaration_chunks",
[sym__declaration_chunk] = "_declaration_chunk",
[sym_type_declaration] = "type_declaration",
[sym__type] = "_type",
[sym_type_alias] = "type_alias",
2022-06-01 20:53:39 +02:00
[sym_record_type] = "record_type",
[sym__typed_field] = "_typed_field",
2022-06-01 20:54:35 +02:00
[sym_array_type] = "array_type",
2022-06-01 20:48:32 +02:00
[sym_function_declaration] = "function_declaration",
[sym_primitive_declaration] = "primitive_declaration",
[sym__function_declaration_common] = "_function_declaration_common",
[sym_parameters] = "parameters",
2022-06-01 20:41:25 +02:00
[sym_variable_declaration] = "variable_declaration",
2022-06-01 20:36:14 +02:00
[sym_import_declaration] = "import_declaration",
2022-06-01 19:33:42 +02:00
[aux_sym_string_literal_repeat1] = "string_literal_repeat1",
2022-06-01 19:58:40 +02:00
[aux_sym_function_call_repeat1] = "function_call_repeat1",
2022-06-01 19:34:31 +02:00
[aux_sym_sequence_expression_repeat1] = "sequence_expression_repeat1",
2022-06-01 19:54:09 +02:00
[aux_sym_record_expression_repeat1] = "record_expression_repeat1",
2022-06-01 20:48:32 +02:00
[aux_sym__declaration_chunk_repeat1] = "_declaration_chunk_repeat1",
[aux_sym__declaration_chunk_repeat2] = "_declaration_chunk_repeat2",
2022-06-01 20:53:39 +02:00
[aux_sym_record_type_repeat1] = "record_type_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[sym_comment] = sym_comment,
[sym_nil_literal] = sym_nil_literal,
2022-06-01 19:33:42 +02:00
[sym_integer_literal] = sym_integer_literal,
[anon_sym_DQUOTE] = anon_sym_DQUOTE,
[aux_sym_string_literal_token1] = aux_sym_string_literal_token1,
[sym_escape_sequence] = sym_escape_sequence,
2022-06-01 20:07:00 +02:00
[anon_sym_DOT] = anon_sym_DOT,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_RBRACK] = anon_sym_RBRACK,
2022-06-01 19:58:40 +02:00
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_COMMA] = anon_sym_COMMA,
[anon_sym_RPAREN] = anon_sym_RPAREN,
2022-06-01 19:34:31 +02:00
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_DASH,
[anon_sym_SLASH] = anon_sym_DASH,
[anon_sym_PLUS] = anon_sym_DASH,
[anon_sym_GT_EQ] = anon_sym_DASH,
[anon_sym_LT_EQ] = anon_sym_DASH,
2022-06-01 19:54:09 +02:00
[anon_sym_EQ] = anon_sym_EQ,
2022-06-01 19:34:31 +02:00
[anon_sym_LT_GT] = anon_sym_DASH,
[anon_sym_LT] = anon_sym_DASH,
[anon_sym_GT] = anon_sym_DASH,
[anon_sym_AMP] = anon_sym_DASH,
[anon_sym_PIPE] = anon_sym_DASH,
[anon_sym_SEMI] = anon_sym_SEMI,
2022-06-01 19:48:54 +02:00
[anon_sym_of] = anon_sym_of,
2022-06-01 19:54:09 +02:00
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
2022-06-01 20:11:52 +02:00
[anon_sym_COLON_EQ] = anon_sym_COLON_EQ,
2022-06-01 20:18:10 +02:00
[anon_sym_if] = anon_sym_if,
[anon_sym_then] = anon_sym_then,
[anon_sym_else] = anon_sym_else,
2022-06-01 20:19:56 +02:00
[anon_sym_while] = anon_sym_while,
[anon_sym_do] = anon_sym_do,
2022-06-01 20:23:04 +02:00
[anon_sym_for] = anon_sym_for,
[anon_sym_to] = anon_sym_to,
2022-06-01 20:23:46 +02:00
[sym_break_expression] = sym_break_expression,
2022-06-01 20:36:14 +02:00
[anon_sym_let] = anon_sym_let,
[anon_sym_in] = anon_sym_in,
[anon_sym_end] = anon_sym_end,
[anon_sym_type] = anon_sym_type,
2022-06-01 20:53:39 +02:00
[anon_sym_COLON] = anon_sym_COLON,
2022-06-01 20:54:35 +02:00
[anon_sym_array] = anon_sym_array,
2022-06-01 20:48:32 +02:00
[anon_sym_function] = anon_sym_function,
[anon_sym_primitive] = anon_sym_primitive,
[anon_sym_var] = anon_sym_var,
2022-06-01 20:36:14 +02:00
[anon_sym_import] = anon_sym_import,
[sym_source_file] = sym_source_file,
2022-06-01 19:33:42 +02:00
[sym__expr] = sym__expr,
[sym_string_literal] = sym_string_literal,
2022-06-01 20:07:00 +02:00
[sym__lvalue] = sym__lvalue,
[sym_record_value] = sym_record_value,
[sym_array_value] = sym_array_value,
2022-06-01 19:58:40 +02:00
[sym_function_call] = sym_function_call,
2022-06-01 19:34:31 +02:00
[sym_unary_expression] = sym_unary_expression,
[sym_binary_expression] = sym_binary_expression,
[sym_sequence_expression] = sym_sequence_expression,
2022-06-01 19:48:54 +02:00
[sym_array_expression] = sym_array_expression,
2022-06-01 19:54:09 +02:00
[sym_record_expression] = sym_record_expression,
2022-06-01 20:11:52 +02:00
[sym_assignment_expression] = sym_assignment_expression,
2022-06-01 20:18:10 +02:00
[sym_if_expression] = sym_if_expression,
2022-06-01 20:19:56 +02:00
[sym_while_expression] = sym_while_expression,
2022-06-01 20:23:04 +02:00
[sym_for_expression] = sym_for_expression,
2022-06-01 20:36:14 +02:00
[sym_let_expression] = sym_let_expression,
[aux_sym__declaration_chunks] = aux_sym__declaration_chunks,
[sym__declaration_chunk] = sym__declaration_chunk,
[sym_type_declaration] = sym_type_declaration,
[sym__type] = sym__type,
[sym_type_alias] = sym_type_alias,
2022-06-01 20:53:39 +02:00
[sym_record_type] = sym_record_type,
[sym__typed_field] = sym__typed_field,
2022-06-01 20:54:35 +02:00
[sym_array_type] = sym_array_type,
2022-06-01 20:48:32 +02:00
[sym_function_declaration] = sym_function_declaration,
[sym_primitive_declaration] = sym_primitive_declaration,
[sym__function_declaration_common] = sym__function_declaration_common,
[sym_parameters] = sym_parameters,
2022-06-01 20:41:25 +02:00
[sym_variable_declaration] = sym_variable_declaration,
2022-06-01 20:36:14 +02:00
[sym_import_declaration] = sym_import_declaration,
2022-06-01 19:33:42 +02:00
[aux_sym_string_literal_repeat1] = aux_sym_string_literal_repeat1,
2022-06-01 19:58:40 +02:00
[aux_sym_function_call_repeat1] = aux_sym_function_call_repeat1,
2022-06-01 19:34:31 +02:00
[aux_sym_sequence_expression_repeat1] = aux_sym_sequence_expression_repeat1,
2022-06-01 19:54:09 +02:00
[aux_sym_record_expression_repeat1] = aux_sym_record_expression_repeat1,
2022-06-01 20:48:32 +02:00
[aux_sym__declaration_chunk_repeat1] = aux_sym__declaration_chunk_repeat1,
[aux_sym__declaration_chunk_repeat2] = aux_sym__declaration_chunk_repeat2,
2022-06-01 20:53:39 +02:00
[aux_sym_record_type_repeat1] = aux_sym_record_type_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym_comment] = {
.visible = true,
.named = true,
},
[sym_nil_literal] = {
.visible = true,
.named = true,
},
2022-06-01 19:33:42 +02:00
[sym_integer_literal] = {
.visible = true,
.named = true,
},
[anon_sym_DQUOTE] = {
.visible = true,
.named = false,
},
[aux_sym_string_literal_token1] = {
.visible = false,
.named = false,
},
[sym_escape_sequence] = {
.visible = true,
.named = true,
},
2022-06-01 20:07:00 +02:00
[anon_sym_DOT] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
2022-06-01 19:58:40 +02:00
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
2022-06-01 19:34:31 +02:00
[anon_sym_DASH] = {
.visible = true,
.named = true,
},
[anon_sym_STAR] = {
.visible = true,
.named = true,
},
[anon_sym_SLASH] = {
.visible = true,
.named = true,
},
[anon_sym_PLUS] = {
.visible = true,
.named = true,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = true,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = true,
},
[anon_sym_EQ] = {
.visible = true,
2022-06-01 19:54:09 +02:00
.named = false,
2022-06-01 19:34:31 +02:00
},
[anon_sym_LT_GT] = {
.visible = true,
.named = true,
},
[anon_sym_LT] = {
.visible = true,
.named = true,
},
[anon_sym_GT] = {
.visible = true,
.named = true,
},
[anon_sym_AMP] = {
.visible = true,
.named = true,
},
[anon_sym_PIPE] = {
.visible = true,
.named = true,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
2022-06-01 19:48:54 +02:00
[anon_sym_of] = {
.visible = true,
.named = false,
},
2022-06-01 19:54:09 +02:00
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
2022-06-01 20:11:52 +02:00
[anon_sym_COLON_EQ] = {
.visible = true,
.named = false,
},
2022-06-01 20:18:10 +02:00
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_then] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
2022-06-01 20:19:56 +02:00
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_do] = {
.visible = true,
.named = false,
},
2022-06-01 20:23:04 +02:00
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_to] = {
.visible = true,
.named = false,
},
2022-06-01 20:23:46 +02:00
[sym_break_expression] = {
.visible = true,
.named = true,
},
2022-06-01 20:36:14 +02:00
[anon_sym_let] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_end] = {
.visible = true,
.named = false,
},
[anon_sym_type] = {
.visible = true,
.named = false,
},
2022-06-01 20:53:39 +02:00
[anon_sym_COLON] = {
2022-06-01 20:48:32 +02:00
.visible = true,
.named = false,
},
2022-06-01 20:54:35 +02:00
[anon_sym_array] = {
.visible = true,
.named = false,
},
2022-06-01 20:53:39 +02:00
[anon_sym_function] = {
2022-06-01 20:41:25 +02:00
.visible = true,
.named = false,
},
2022-06-01 20:53:39 +02:00
[anon_sym_primitive] = {
2022-06-01 20:41:25 +02:00
.visible = true,
.named = false,
},
2022-06-01 20:48:32 +02:00
[anon_sym_var] = {
.visible = true,
.named = false,
},
2022-06-01 20:36:14 +02:00
[anon_sym_import] = {
.visible = true,
.named = false,
},
[sym_source_file] = {
.visible = true,
.named = true,
},
2022-06-01 19:33:42 +02:00
[sym__expr] = {
.visible = false,
.named = true,
},
[sym_string_literal] = {
.visible = true,
.named = true,
},
2022-06-01 20:07:00 +02:00
[sym__lvalue] = {
.visible = false,
.named = true,
},
[sym_record_value] = {
.visible = true,
.named = true,
},
[sym_array_value] = {
.visible = true,
.named = true,
},
2022-06-01 19:58:40 +02:00
[sym_function_call] = {
.visible = true,
.named = true,
},
2022-06-01 19:34:31 +02:00
[sym_unary_expression] = {
.visible = true,
.named = true,
},
[sym_binary_expression] = {
.visible = true,
.named = true,
},
[sym_sequence_expression] = {
.visible = true,
.named = true,
},
2022-06-01 19:48:54 +02:00
[sym_array_expression] = {
.visible = true,
.named = true,
},
2022-06-01 19:54:09 +02:00
[sym_record_expression] = {
.visible = true,
.named = true,
},
2022-06-01 20:11:52 +02:00
[sym_assignment_expression] = {
.visible = true,
.named = true,
},
2022-06-01 20:18:10 +02:00
[sym_if_expression] = {
.visible = true,
.named = true,
},
2022-06-01 20:19:56 +02:00
[sym_while_expression] = {
.visible = true,
.named = true,
},
2022-06-01 20:23:04 +02:00
[sym_for_expression] = {
.visible = true,
.named = true,
},
2022-06-01 20:36:14 +02:00
[sym_let_expression] = {
.visible = true,
.named = true,
},
[aux_sym__declaration_chunks] = {
.visible = false,
.named = false,
},
[sym__declaration_chunk] = {
.visible = false,
.named = true,
},
[sym_type_declaration] = {
.visible = true,
.named = true,
},
[sym__type] = {
.visible = false,
.named = true,
},
[sym_type_alias] = {
.visible = true,
.named = true,
},
2022-06-01 20:53:39 +02:00
[sym_record_type] = {
.visible = true,
.named = true,
},
[sym__typed_field] = {
.visible = false,
.named = true,
},
2022-06-01 20:54:35 +02:00
[sym_array_type] = {
.visible = true,
.named = true,
},
2022-06-01 20:48:32 +02:00
[sym_function_declaration] = {
.visible = true,
.named = true,
},
[sym_primitive_declaration] = {
.visible = true,
.named = true,
},
[sym__function_declaration_common] = {
.visible = false,
.named = true,
},
[sym_parameters] = {
.visible = true,
.named = true,
},
2022-06-01 20:41:25 +02:00
[sym_variable_declaration] = {
.visible = true,
.named = true,
},
2022-06-01 20:36:14 +02:00
[sym_import_declaration] = {
.visible = true,
.named = true,
},
2022-06-01 19:33:42 +02:00
[aux_sym_string_literal_repeat1] = {
.visible = false,
.named = false,
},
2022-06-01 19:58:40 +02:00
[aux_sym_function_call_repeat1] = {
.visible = false,
.named = false,
},
2022-06-01 19:34:31 +02:00
[aux_sym_sequence_expression_repeat1] = {
.visible = false,
.named = false,
},
2022-06-01 19:54:09 +02:00
[aux_sym_record_expression_repeat1] = {
.visible = false,
.named = false,
},
2022-06-01 20:48:32 +02:00
[aux_sym__declaration_chunk_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym__declaration_chunk_repeat2] = {
.visible = false,
.named = false,
},
2022-06-01 20:53:39 +02:00
[aux_sym_record_type_repeat1] = {
2022-06-01 20:48:32 +02:00
.visible = false,
.named = false,
},
2022-06-01 19:34:31 +02:00
};
enum {
2022-06-01 20:18:10 +02:00
field_alternative = 1,
field_arguments = 2,
field_array = 3,
2022-06-01 20:19:56 +02:00
field_body = 4,
field_condition = 5,
field_consequence = 6,
2022-06-01 20:36:14 +02:00
field_declarations = 7,
2022-06-01 20:54:35 +02:00
field_element_type = 8,
field_end = 9,
field_expression = 10,
field_field = 11,
field_file = 12,
field_function = 13,
field_index = 14,
field_init = 15,
field_left = 16,
field_name = 17,
field_operator = 18,
field_parameters = 19,
field_record = 20,
field_return_type = 21,
field_right = 22,
field_size = 23,
field_start = 24,
field_type = 25,
field_value = 26,
2022-06-01 19:34:31 +02:00
};
static const char * const ts_field_names[] = {
[0] = NULL,
2022-06-01 20:18:10 +02:00
[field_alternative] = "alternative",
2022-06-01 19:58:40 +02:00
[field_arguments] = "arguments",
2022-06-01 20:07:00 +02:00
[field_array] = "array",
2022-06-01 20:19:56 +02:00
[field_body] = "body",
2022-06-01 20:18:10 +02:00
[field_condition] = "condition",
[field_consequence] = "consequence",
2022-06-01 20:36:14 +02:00
[field_declarations] = "declarations",
2022-06-01 20:54:35 +02:00
[field_element_type] = "element_type",
2022-06-01 20:23:04 +02:00
[field_end] = "end",
2022-06-01 19:34:31 +02:00
[field_expression] = "expression",
2022-06-01 19:54:09 +02:00
[field_field] = "field",
2022-06-01 20:36:14 +02:00
[field_file] = "file",
2022-06-01 19:58:40 +02:00
[field_function] = "function",
2022-06-01 20:07:00 +02:00
[field_index] = "index",
2022-06-01 19:48:54 +02:00
[field_init] = "init",
2022-06-01 19:34:31 +02:00
[field_left] = "left",
2022-06-01 20:41:25 +02:00
[field_name] = "name",
2022-06-01 19:34:31 +02:00
[field_operator] = "operator",
2022-06-01 20:48:32 +02:00
[field_parameters] = "parameters",
2022-06-01 20:07:00 +02:00
[field_record] = "record",
[field_return_type] = "return_type",
2022-06-01 19:34:31 +02:00
[field_right] = "right",
2022-06-01 19:48:54 +02:00
[field_size] = "size",
2022-06-01 20:23:04 +02:00
[field_start] = "start",
2022-06-01 19:48:54 +02:00
[field_type] = "type",
2022-06-01 20:41:25 +02:00
[field_value] = "value",
2022-06-01 19:34:31 +02:00
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 2},
[2] = {.index = 2, .length = 3},
[3] = {.index = 5, .length = 1},
[4] = {.index = 6, .length = 1},
[5] = {.index = 7, .length = 1},
[6] = {.index = 8, .length = 2},
[7] = {.index = 10, .length = 3},
[8] = {.index = 13, .length = 2},
[9] = {.index = 15, .length = 2},
[10] = {.index = 17, .length = 2},
[11] = {.index = 19, .length = 2},
[12] = {.index = 21, .length = 2},
[13] = {.index = 23, .length = 1},
[14] = {.index = 24, .length = 1},
[15] = {.index = 25, .length = 2},
[16] = {.index = 27, .length = 4},
[17] = {.index = 31, .length = 2},
[18] = {.index = 33, .length = 3},
[19] = {.index = 36, .length = 2},
[20] = {.index = 38, .length = 2},
[21] = {.index = 40, .length = 2},
[22] = {.index = 42, .length = 3},
[23] = {.index = 45, .length = 3},
[24] = {.index = 48, .length = 3},
[25] = {.index = 51, .length = 3},
[26] = {.index = 54, .length = 3},
[27] = {.index = 57, .length = 1},
[28] = {.index = 58, .length = 2},
[29] = {.index = 60, .length = 4},
[30] = {.index = 64, .length = 4},
[31] = {.index = 68, .length = 3},
[32] = {.index = 71, .length = 5},
[33] = {.index = 76, .length = 4},
[34] = {.index = 80, .length = 4},
[35] = {.index = 84, .length = 2},
2022-06-01 19:34:31 +02:00
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_expression, 1},
{field_operator, 0},
[2] =
2022-06-01 20:48:32 +02:00
{field_name, 1, .inherited = true},
{field_parameters, 1, .inherited = true},
{field_return_type, 1, .inherited = true},
2022-06-01 20:48:32 +02:00
[5] =
{field_file, 1},
2022-06-01 20:48:32 +02:00
[6] =
{field_function, 0},
2022-06-01 20:48:32 +02:00
[7] =
{field_type, 0},
[8] =
2022-06-01 20:48:32 +02:00
{field_name, 0},
{field_parameters, 1},
[10] =
2022-06-01 19:34:31 +02:00
{field_left, 0},
{field_operator, 1},
{field_right, 2},
[13] =
2022-06-01 20:07:00 +02:00
{field_field, 2},
{field_record, 0},
[15] =
2022-06-01 20:11:52 +02:00
{field_left, 0},
{field_right, 2},
[17] =
2022-06-01 19:58:40 +02:00
{field_arguments, 2},
{field_function, 0},
[19] =
2022-06-01 20:18:10 +02:00
{field_condition, 1},
{field_consequence, 3},
[21] =
2022-06-01 20:19:56 +02:00
{field_body, 3},
{field_condition, 1},
2022-06-01 20:48:32 +02:00
[23] =
{field_body, 2},
2022-06-01 20:48:32 +02:00
[24] =
{field_declarations, 1},
[25] =
{field_name, 1},
{field_value, 3},
[27] =
2022-06-01 20:48:32 +02:00
{field_body, 3},
{field_name, 1, .inherited = true},
{field_parameters, 1, .inherited = true},
{field_return_type, 1, .inherited = true},
[31] =
2022-06-01 20:07:00 +02:00
{field_array, 0},
{field_index, 2},
[33] =
2022-06-01 19:58:40 +02:00
{field_arguments, 2},
{field_arguments, 3},
{field_function, 0},
[36] =
2022-06-01 20:36:14 +02:00
{field_body, 2},
{field_body, 3},
[38] =
2022-06-01 20:36:14 +02:00
{field_body, 3},
{field_declarations, 1},
[40] =
2022-06-01 20:48:32 +02:00
{field_name, 1, .inherited = true},
{field_type, 1, .inherited = true},
[42] =
{field_name, 0},
{field_parameters, 1},
{field_return_type, 3},
[45] =
2022-06-01 19:48:54 +02:00
{field_init, 5},
{field_size, 2},
{field_type, 0},
[48] =
2022-06-01 19:54:09 +02:00
{field_field, 2},
{field_init, 4},
{field_type, 0},
[51] =
2022-06-01 20:18:10 +02:00
{field_alternative, 5},
{field_condition, 1},
{field_consequence, 3},
[54] =
2022-06-01 20:36:14 +02:00
{field_body, 3},
{field_body, 4},
{field_declarations, 1},
[57] =
2022-06-01 20:54:35 +02:00
{field_element_type, 2},
[58] =
2022-06-01 20:53:39 +02:00
{field_name, 0},
{field_type, 2},
[60] =
2022-06-01 20:48:32 +02:00
{field_name, 1, .inherited = true},
{field_name, 2, .inherited = true},
{field_type, 1, .inherited = true},
{field_type, 2, .inherited = true},
[64] =
2022-06-01 20:48:32 +02:00
{field_name, 0, .inherited = true},
{field_name, 1, .inherited = true},
{field_type, 0, .inherited = true},
{field_type, 1, .inherited = true},
[68] =
2022-06-01 20:41:25 +02:00
{field_name, 1},
{field_type, 3},
{field_value, 5},
[71] =
2022-06-01 19:54:09 +02:00
{field_field, 2},
{field_field, 5, .inherited = true},
{field_init, 4},
{field_init, 5, .inherited = true},
{field_type, 0},
[76] =
2022-06-01 19:54:09 +02:00
{field_field, 0, .inherited = true},
{field_field, 1, .inherited = true},
{field_init, 0, .inherited = true},
{field_init, 1, .inherited = true},
[80] =
2022-06-01 20:23:04 +02:00
{field_body, 7},
{field_end, 5},
{field_index, 1},
{field_start, 3},
[84] =
2022-06-01 19:54:09 +02:00
{field_field, 1},
{field_init, 3},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
2022-06-01 20:48:32 +02:00
[7] = {
2022-06-01 19:54:09 +02:00
[1] = anon_sym_DASH,
},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(11);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(9)
if (lookahead == '"') ADVANCE(15);
if (lookahead == '&') ADVANCE(39);
if (lookahead == '(') ADVANCE(26);
if (lookahead == ')') ADVANCE(28);
if (lookahead == '*') ADVANCE(30);
if (lookahead == '+') ADVANCE(32);
if (lookahead == ',') ADVANCE(27);
if (lookahead == '-') ADVANCE(29);
if (lookahead == '.') ADVANCE(23);
if (lookahead == '/') ADVANCE(31);
if (lookahead == ':') ADVANCE(45);
if (lookahead == ';') ADVANCE(41);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(35);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(24);
if (lookahead == '\\') ADVANCE(6);
if (lookahead == ']') ADVANCE(25);
if (lookahead == '{') ADVANCE(42);
if (lookahead == '|') ADVANCE(40);
if (lookahead == '}') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(21);
END_STATE();
case 1:
if (lookahead == '*') ADVANCE(2);
if (lookahead != 0) ADVANCE(1);
END_STATE();
case 2:
if (lookahead == '/') ADVANCE(12);
if (lookahead != 0) ADVANCE(1);
2022-06-01 20:11:52 +02:00
END_STATE();
case 3:
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(19);
if (lookahead == '"') ADVANCE(15);
if (lookahead == '/') ADVANCE(16);
if (lookahead == '\\') ADVANCE(6);
if (lookahead != 0) ADVANCE(20);
END_STATE();
case 4:
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(22);
END_STATE();
case 5:
if (('0' <= lookahead && lookahead <= '7')) ADVANCE(4);
END_STATE();
case 6:
2022-06-01 19:33:42 +02:00
if (lookahead == '"' ||
lookahead == '\\' ||
lookahead == 'a' ||
lookahead == 'b' ||
lookahead == 'f' ||
lookahead == 'n' ||
lookahead == 'r' ||
lookahead == 't' ||
lookahead == 'v') ADVANCE(22);
if (lookahead == 'x') ADVANCE(8);
if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5);
2022-06-01 19:33:42 +02:00
END_STATE();
case 7:
2022-06-01 19:33:42 +02:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(22);
2022-06-01 19:33:42 +02:00
END_STATE();
case 8:
2022-06-01 19:33:42 +02:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'F') ||
('a' <= lookahead && lookahead <= 'f')) ADVANCE(7);
2022-06-01 19:33:42 +02:00
END_STATE();
case 9:
if (eof) ADVANCE(11);
2022-06-01 19:33:42 +02:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(9)
if (lookahead == '"') ADVANCE(15);
if (lookahead == '&') ADVANCE(39);
if (lookahead == '(') ADVANCE(26);
if (lookahead == ')') ADVANCE(28);
if (lookahead == '*') ADVANCE(30);
if (lookahead == '+') ADVANCE(32);
if (lookahead == ',') ADVANCE(27);
if (lookahead == '-') ADVANCE(29);
if (lookahead == '.') ADVANCE(23);
if (lookahead == '/') ADVANCE(31);
if (lookahead == ':') ADVANCE(45);
if (lookahead == ';') ADVANCE(41);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(35);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(24);
if (lookahead == ']') ADVANCE(25);
if (lookahead == '{') ADVANCE(42);
if (lookahead == '|') ADVANCE(40);
if (lookahead == '}') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(21);
2022-06-01 19:33:42 +02:00
END_STATE();
case 10:
if (eof) ADVANCE(11);
2022-06-01 20:18:10 +02:00
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(10)
if (lookahead == '&') ADVANCE(39);
if (lookahead == '(') ADVANCE(26);
if (lookahead == ')') ADVANCE(28);
if (lookahead == '*') ADVANCE(30);
if (lookahead == '+') ADVANCE(32);
if (lookahead == ',') ADVANCE(27);
if (lookahead == '-') ADVANCE(29);
if (lookahead == '.') ADVANCE(23);
if (lookahead == '/') ADVANCE(31);
if (lookahead == ':') ADVANCE(45);
if (lookahead == ';') ADVANCE(41);
if (lookahead == '<') ADVANCE(37);
if (lookahead == '=') ADVANCE(35);
if (lookahead == '>') ADVANCE(38);
if (lookahead == '[') ADVANCE(24);
if (lookahead == ']') ADVANCE(25);
if (lookahead == '{') ADVANCE(42);
if (lookahead == '|') ADVANCE(40);
if (lookahead == '}') ADVANCE(43);
2022-06-01 20:18:10 +02:00
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(21);
2022-06-01 20:18:10 +02:00
END_STATE();
case 11:
2022-06-01 19:33:42 +02:00
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 12:
ACCEPT_TOKEN(sym_comment);
END_STATE();
case 13:
ACCEPT_TOKEN(sym_comment);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '\\') ADVANCE(20);
END_STATE();
case 14:
2022-06-01 19:33:42 +02:00
ACCEPT_TOKEN(sym_integer_literal);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(14);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(21);
2022-06-01 19:33:42 +02:00
END_STATE();
case 15:
2022-06-01 19:33:42 +02:00
ACCEPT_TOKEN(anon_sym_DQUOTE);
END_STATE();
case 16:
ACCEPT_TOKEN(aux_sym_string_literal_token1);
if (lookahead == '*') ADVANCE(17);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '\\') ADVANCE(20);
END_STATE();
case 17:
ACCEPT_TOKEN(aux_sym_string_literal_token1);
if (lookahead == '*') ADVANCE(18);
if (lookahead == '"' ||
lookahead == '\\') ADVANCE(1);
if (lookahead != 0) ADVANCE(17);
END_STATE();
case 18:
ACCEPT_TOKEN(aux_sym_string_literal_token1);
if (lookahead == '/') ADVANCE(13);
if (lookahead == '"' ||
lookahead == '\\') ADVANCE(1);
if (lookahead != 0) ADVANCE(17);
END_STATE();
case 19:
2022-06-01 19:33:42 +02:00
ACCEPT_TOKEN(aux_sym_string_literal_token1);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') ADVANCE(19);
if (lookahead == '/') ADVANCE(16);
2022-06-01 19:33:42 +02:00
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '\\') ADVANCE(20);
2022-06-01 19:33:42 +02:00
END_STATE();
case 20:
2022-06-01 19:33:42 +02:00
ACCEPT_TOKEN(aux_sym_string_literal_token1);
if (lookahead != 0 &&
lookahead != '"' &&
lookahead != '\\') ADVANCE(20);
END_STATE();
case 21:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9') ||
('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(21);
END_STATE();
case 22:
2022-06-01 19:33:42 +02:00
ACCEPT_TOKEN(sym_escape_sequence);
END_STATE();
case 23:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_DOT);
2022-06-01 19:34:31 +02:00
END_STATE();
case 24:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_LBRACK);
2022-06-01 19:34:31 +02:00
END_STATE();
case 25:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_RBRACK);
2022-06-01 19:34:31 +02:00
END_STATE();
case 26:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_LPAREN);
2022-06-01 19:34:31 +02:00
END_STATE();
case 27:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_COMMA);
2022-06-01 19:34:31 +02:00
END_STATE();
case 28:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_RPAREN);
2022-06-01 19:34:31 +02:00
END_STATE();
case 29:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_DASH);
2022-06-01 19:34:31 +02:00
END_STATE();
case 30:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_STAR);
2022-06-01 19:34:31 +02:00
END_STATE();
case 31:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_SLASH);
if (lookahead == '*') ADVANCE(1);
2022-06-01 19:34:31 +02:00
END_STATE();
case 32:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_PLUS);
2022-06-01 19:34:31 +02:00
END_STATE();
case 33:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_GT_EQ);
2022-06-01 19:34:31 +02:00
END_STATE();
case 34:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_LT_EQ);
2022-06-01 19:34:31 +02:00
END_STATE();
case 35:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_EQ);
2022-06-01 19:34:31 +02:00
END_STATE();
case 36:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_LT_GT);
2022-06-01 19:34:31 +02:00
END_STATE();
case 37:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(34);
if (lookahead == '>') ADVANCE(36);
2022-06-01 19:34:31 +02:00
END_STATE();
case 38:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(33);
2022-06-01 19:48:54 +02:00
END_STATE();
case 39:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_AMP);
2022-06-01 19:48:54 +02:00
END_STATE();
case 40:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_PIPE);
2022-06-01 19:54:09 +02:00
END_STATE();
case 41:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_SEMI);
2022-06-01 19:54:09 +02:00
END_STATE();
case 42:
2022-06-01 20:07:00 +02:00
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 43:
2022-06-01 19:54:09 +02:00
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 44:
2022-06-01 20:11:52 +02:00
ACCEPT_TOKEN(anon_sym_COLON_EQ);
END_STATE();
case 45:
2022-06-01 20:41:25 +02:00
ACCEPT_TOKEN(anon_sym_COLON);
if (lookahead == '=') ADVANCE(44);
2022-06-01 20:41:25 +02:00
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
2022-06-01 20:54:35 +02:00
if (lookahead == 'a') ADVANCE(1);
if (lookahead == 'b') ADVANCE(2);
if (lookahead == 'd') ADVANCE(3);
if (lookahead == 'e') ADVANCE(4);
if (lookahead == 'f') ADVANCE(5);
if (lookahead == 'i') ADVANCE(6);
if (lookahead == 'l') ADVANCE(7);
if (lookahead == 'n') ADVANCE(8);
if (lookahead == 'o') ADVANCE(9);
if (lookahead == 'p') ADVANCE(10);
if (lookahead == 't') ADVANCE(11);
if (lookahead == 'v') ADVANCE(12);
if (lookahead == 'w') ADVANCE(13);
2022-06-01 19:48:54 +02:00
END_STATE();
case 1:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(14);
2022-06-01 19:48:54 +02:00
END_STATE();
case 2:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(15);
2022-06-01 19:48:54 +02:00
END_STATE();
case 3:
2022-06-01 20:54:35 +02:00
if (lookahead == 'o') ADVANCE(16);
2022-06-01 19:48:54 +02:00
END_STATE();
case 4:
2022-06-01 20:54:35 +02:00
if (lookahead == 'l') ADVANCE(17);
if (lookahead == 'n') ADVANCE(18);
2022-06-01 19:48:54 +02:00
END_STATE();
case 5:
2022-06-01 20:54:35 +02:00
if (lookahead == 'o') ADVANCE(19);
if (lookahead == 'u') ADVANCE(20);
2022-06-01 20:18:10 +02:00
END_STATE();
case 6:
2022-06-01 20:54:35 +02:00
if (lookahead == 'f') ADVANCE(21);
if (lookahead == 'm') ADVANCE(22);
if (lookahead == 'n') ADVANCE(23);
2022-06-01 20:18:10 +02:00
END_STATE();
case 7:
2022-06-01 20:54:35 +02:00
if (lookahead == 'e') ADVANCE(24);
2022-06-01 20:18:10 +02:00
END_STATE();
case 8:
2022-06-01 20:54:35 +02:00
if (lookahead == 'i') ADVANCE(25);
2022-06-01 20:18:10 +02:00
END_STATE();
case 9:
2022-06-01 20:54:35 +02:00
if (lookahead == 'f') ADVANCE(26);
2022-06-01 20:18:10 +02:00
END_STATE();
case 10:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(27);
2022-06-01 20:18:10 +02:00
END_STATE();
case 11:
2022-06-01 20:54:35 +02:00
if (lookahead == 'h') ADVANCE(28);
if (lookahead == 'o') ADVANCE(29);
if (lookahead == 'y') ADVANCE(30);
2022-06-01 20:18:10 +02:00
END_STATE();
case 12:
2022-06-01 20:54:35 +02:00
if (lookahead == 'a') ADVANCE(31);
END_STATE();
2022-06-01 20:18:10 +02:00
case 13:
2022-06-01 20:54:35 +02:00
if (lookahead == 'h') ADVANCE(32);
2022-06-01 20:18:10 +02:00
END_STATE();
case 14:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(33);
2022-06-01 20:18:10 +02:00
END_STATE();
case 15:
2022-06-01 20:54:35 +02:00
if (lookahead == 'e') ADVANCE(34);
2022-06-01 20:19:56 +02:00
END_STATE();
case 16:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_do);
2022-06-01 20:19:56 +02:00
END_STATE();
case 17:
2022-06-01 20:54:35 +02:00
if (lookahead == 's') ADVANCE(35);
2022-06-01 20:19:56 +02:00
END_STATE();
case 18:
2022-06-01 20:54:35 +02:00
if (lookahead == 'd') ADVANCE(36);
2022-06-01 20:19:56 +02:00
END_STATE();
case 19:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(37);
2022-06-01 20:19:56 +02:00
END_STATE();
case 20:
2022-06-01 20:54:35 +02:00
if (lookahead == 'n') ADVANCE(38);
2022-06-01 20:18:10 +02:00
END_STATE();
2022-06-01 20:19:56 +02:00
case 21:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_if);
2022-06-01 20:19:56 +02:00
END_STATE();
case 22:
2022-06-01 20:54:35 +02:00
if (lookahead == 'p') ADVANCE(39);
2022-06-01 20:23:04 +02:00
END_STATE();
case 23:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_in);
2022-06-01 20:23:04 +02:00
END_STATE();
case 24:
2022-06-01 20:54:35 +02:00
if (lookahead == 't') ADVANCE(40);
2022-06-01 20:23:04 +02:00
END_STATE();
case 25:
2022-06-01 20:54:35 +02:00
if (lookahead == 'l') ADVANCE(41);
2022-06-01 20:23:04 +02:00
END_STATE();
case 26:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_of);
2022-06-01 20:23:46 +02:00
END_STATE();
case 27:
2022-06-01 20:54:35 +02:00
if (lookahead == 'i') ADVANCE(42);
2022-06-01 20:23:46 +02:00
END_STATE();
case 28:
2022-06-01 20:54:35 +02:00
if (lookahead == 'e') ADVANCE(43);
2022-06-01 20:23:46 +02:00
END_STATE();
case 29:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_to);
2022-06-01 20:23:46 +02:00
END_STATE();
case 30:
2022-06-01 20:54:35 +02:00
if (lookahead == 'p') ADVANCE(44);
2022-06-01 20:23:46 +02:00
END_STATE();
case 31:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(45);
2022-06-01 20:36:14 +02:00
END_STATE();
case 32:
2022-06-01 20:54:35 +02:00
if (lookahead == 'i') ADVANCE(46);
2022-06-01 20:36:14 +02:00
END_STATE();
case 33:
2022-06-01 20:54:35 +02:00
if (lookahead == 'a') ADVANCE(47);
2022-06-01 20:36:14 +02:00
END_STATE();
case 34:
2022-06-01 20:54:35 +02:00
if (lookahead == 'a') ADVANCE(48);
2022-06-01 20:36:14 +02:00
END_STATE();
case 35:
2022-06-01 20:54:35 +02:00
if (lookahead == 'e') ADVANCE(49);
2022-06-01 20:36:14 +02:00
END_STATE();
case 36:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_end);
2022-06-01 20:36:14 +02:00
END_STATE();
case 37:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_for);
2022-06-01 20:36:14 +02:00
END_STATE();
case 38:
2022-06-01 20:54:35 +02:00
if (lookahead == 'c') ADVANCE(50);
2022-06-01 20:36:14 +02:00
END_STATE();
case 39:
2022-06-01 20:54:35 +02:00
if (lookahead == 'o') ADVANCE(51);
2022-06-01 20:36:14 +02:00
END_STATE();
case 40:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_let);
2022-06-01 20:36:14 +02:00
END_STATE();
case 41:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(sym_nil_literal);
2022-06-01 20:19:56 +02:00
END_STATE();
2022-06-01 20:36:14 +02:00
case 42:
2022-06-01 20:54:35 +02:00
if (lookahead == 'm') ADVANCE(52);
2022-06-01 20:41:25 +02:00
END_STATE();
case 43:
2022-06-01 20:54:35 +02:00
if (lookahead == 'n') ADVANCE(53);
2022-06-01 20:41:25 +02:00
END_STATE();
case 44:
2022-06-01 20:54:35 +02:00
if (lookahead == 'e') ADVANCE(54);
2022-06-01 20:41:25 +02:00
END_STATE();
case 45:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_var);
2022-06-01 20:48:32 +02:00
END_STATE();
case 46:
2022-06-01 20:54:35 +02:00
if (lookahead == 'l') ADVANCE(55);
2022-06-01 20:48:32 +02:00
END_STATE();
case 47:
2022-06-01 20:54:35 +02:00
if (lookahead == 'y') ADVANCE(56);
2022-06-01 20:48:32 +02:00
END_STATE();
case 48:
2022-06-01 20:54:35 +02:00
if (lookahead == 'k') ADVANCE(57);
2022-06-01 20:48:32 +02:00
END_STATE();
case 49:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_else);
2022-06-01 20:48:32 +02:00
END_STATE();
case 50:
2022-06-01 20:54:35 +02:00
if (lookahead == 't') ADVANCE(58);
2022-06-01 20:48:32 +02:00
END_STATE();
case 51:
2022-06-01 20:54:35 +02:00
if (lookahead == 'r') ADVANCE(59);
2022-06-01 20:48:32 +02:00
END_STATE();
case 52:
2022-06-01 20:54:35 +02:00
if (lookahead == 'i') ADVANCE(60);
2022-06-01 20:48:32 +02:00
END_STATE();
case 53:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_then);
2022-06-01 20:48:32 +02:00
END_STATE();
case 54:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_type);
2022-06-01 20:48:32 +02:00
END_STATE();
case 55:
2022-06-01 20:54:35 +02:00
if (lookahead == 'e') ADVANCE(61);
2022-06-01 20:36:14 +02:00
END_STATE();
2022-06-01 20:48:32 +02:00
case 56:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_array);
2022-06-01 20:48:32 +02:00
END_STATE();
case 57:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(sym_break_expression);
2022-06-01 20:48:32 +02:00
END_STATE();
case 58:
2022-06-01 20:54:35 +02:00
if (lookahead == 'i') ADVANCE(62);
2022-06-01 20:48:32 +02:00
END_STATE();
case 59:
2022-06-01 20:54:35 +02:00
if (lookahead == 't') ADVANCE(63);
2022-06-01 20:48:32 +02:00
END_STATE();
case 60:
2022-06-01 20:54:35 +02:00
if (lookahead == 't') ADVANCE(64);
2022-06-01 20:48:32 +02:00
END_STATE();
case 61:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 62:
2022-06-01 20:54:35 +02:00
if (lookahead == 'o') ADVANCE(65);
END_STATE();
case 63:
2022-06-01 20:54:35 +02:00
ACCEPT_TOKEN(anon_sym_import);
END_STATE();
case 64:
2022-06-01 20:54:35 +02:00
if (lookahead == 'i') ADVANCE(66);
END_STATE();
case 65:
if (lookahead == 'n') ADVANCE(67);
END_STATE();
case 66:
if (lookahead == 'v') ADVANCE(68);
END_STATE();
case 67:
ACCEPT_TOKEN(anon_sym_function);
END_STATE();
case 68:
if (lookahead == 'e') ADVANCE(69);
END_STATE();
case 69:
2022-06-01 20:48:32 +02:00
ACCEPT_TOKEN(anon_sym_primitive);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
2022-06-01 19:48:54 +02:00
[1] = {.lex_state = 0},
[2] = {.lex_state = 10},
[3] = {.lex_state = 10},
[4] = {.lex_state = 10},
[5] = {.lex_state = 10},
[6] = {.lex_state = 10},
[7] = {.lex_state = 10},
[8] = {.lex_state = 10},
[9] = {.lex_state = 10},
[10] = {.lex_state = 10},
[11] = {.lex_state = 10},
[12] = {.lex_state = 10},
[13] = {.lex_state = 10},
[14] = {.lex_state = 10},
[15] = {.lex_state = 10},
[16] = {.lex_state = 10},
[17] = {.lex_state = 10},
[18] = {.lex_state = 10},
[19] = {.lex_state = 10},
[20] = {.lex_state = 10},
[21] = {.lex_state = 10},
[22] = {.lex_state = 10},
[23] = {.lex_state = 10},
[24] = {.lex_state = 10},
[25] = {.lex_state = 10},
[26] = {.lex_state = 10},
[27] = {.lex_state = 10},
[28] = {.lex_state = 10},
[29] = {.lex_state = 10},
[30] = {.lex_state = 10},
[31] = {.lex_state = 10},
[32] = {.lex_state = 10},
[33] = {.lex_state = 10},
[34] = {.lex_state = 10},
[35] = {.lex_state = 0},
[36] = {.lex_state = 0},
[37] = {.lex_state = 0},
2022-06-01 20:48:32 +02:00
[38] = {.lex_state = 0},
[39] = {.lex_state = 0},
[40] = {.lex_state = 0},
[41] = {.lex_state = 0},
[42] = {.lex_state = 0},
[43] = {.lex_state = 0},
[44] = {.lex_state = 0},
[45] = {.lex_state = 0},
[46] = {.lex_state = 0},
[47] = {.lex_state = 0},
[48] = {.lex_state = 0},
[49] = {.lex_state = 0},
[50] = {.lex_state = 0},
[51] = {.lex_state = 0},
[52] = {.lex_state = 0},
[53] = {.lex_state = 0},
[54] = {.lex_state = 0},
[55] = {.lex_state = 0},
[56] = {.lex_state = 0},
[57] = {.lex_state = 0},
[58] = {.lex_state = 0},
[59] = {.lex_state = 0},
[60] = {.lex_state = 0},
[61] = {.lex_state = 0},
[62] = {.lex_state = 0},
[63] = {.lex_state = 0},
[64] = {.lex_state = 10},
[65] = {.lex_state = 10},
[66] = {.lex_state = 10},
[67] = {.lex_state = 10},
[68] = {.lex_state = 10},
[69] = {.lex_state = 10},
[70] = {.lex_state = 10},
[71] = {.lex_state = 0},
[72] = {.lex_state = 10},
[73] = {.lex_state = 10},
[74] = {.lex_state = 10},
[75] = {.lex_state = 0},
[76] = {.lex_state = 0},
2022-06-01 20:41:25 +02:00
[77] = {.lex_state = 0},
[78] = {.lex_state = 0},
[79] = {.lex_state = 0},
[80] = {.lex_state = 10},
[81] = {.lex_state = 10},
2022-06-01 20:53:39 +02:00
[82] = {.lex_state = 0},
[83] = {.lex_state = 10},
[84] = {.lex_state = 10},
[85] = {.lex_state = 0},
[86] = {.lex_state = 10},
[87] = {.lex_state = 10},
[88] = {.lex_state = 10},
[89] = {.lex_state = 10},
[90] = {.lex_state = 10},
[91] = {.lex_state = 10},
[92] = {.lex_state = 10},
[93] = {.lex_state = 10},
[94] = {.lex_state = 10},
[95] = {.lex_state = 10},
[96] = {.lex_state = 10},
[97] = {.lex_state = 10},
[98] = {.lex_state = 10},
[99] = {.lex_state = 10},
[100] = {.lex_state = 10},
[101] = {.lex_state = 10},
[102] = {.lex_state = 3},
[103] = {.lex_state = 3},
[104] = {.lex_state = 10},
[105] = {.lex_state = 0},
[106] = {.lex_state = 3},
[107] = {.lex_state = 0},
[108] = {.lex_state = 0},
2022-06-01 20:54:35 +02:00
[109] = {.lex_state = 0},
[110] = {.lex_state = 0},
[111] = {.lex_state = 10},
2022-06-01 20:54:35 +02:00
[112] = {.lex_state = 0},
[113] = {.lex_state = 0},
[114] = {.lex_state = 0},
[115] = {.lex_state = 10},
2022-06-01 20:53:39 +02:00
[116] = {.lex_state = 0},
[117] = {.lex_state = 0},
[118] = {.lex_state = 0},
[119] = {.lex_state = 0},
[120] = {.lex_state = 10},
[121] = {.lex_state = 10},
[122] = {.lex_state = 10},
[123] = {.lex_state = 10},
[124] = {.lex_state = 0},
[125] = {.lex_state = 0},
2022-06-01 20:54:35 +02:00
[126] = {.lex_state = 0},
[127] = {.lex_state = 10},
[128] = {.lex_state = 10},
[129] = {.lex_state = 0},
[130] = {.lex_state = 10},
[131] = {.lex_state = 10},
[132] = {.lex_state = 10},
2022-06-01 20:53:39 +02:00
[133] = {.lex_state = 0},
[134] = {.lex_state = 10},
[135] = {.lex_state = 10},
[136] = {.lex_state = 10},
[137] = {.lex_state = 10},
2022-06-01 20:54:35 +02:00
[138] = {.lex_state = 0},
[139] = {.lex_state = 10},
2022-06-01 20:54:35 +02:00
[140] = {.lex_state = 0},
[141] = {.lex_state = 0},
2022-06-01 20:54:35 +02:00
[142] = {.lex_state = 0},
[143] = {.lex_state = 10},
[144] = {.lex_state = 10},
[145] = {.lex_state = 0},
[146] = {.lex_state = 0},
[147] = {.lex_state = 10},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym_comment] = ACTIONS(3),
[sym_nil_literal] = ACTIONS(1),
2022-06-01 19:33:42 +02:00
[sym_integer_literal] = ACTIONS(1),
[anon_sym_DQUOTE] = ACTIONS(1),
[sym_escape_sequence] = ACTIONS(1),
2022-06-01 20:07:00 +02:00
[anon_sym_DOT] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
2022-06-01 19:58:40 +02:00
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
2022-06-01 19:34:31 +02:00
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_LT_GT] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_AMP] = ACTIONS(1),
[anon_sym_PIPE] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
2022-06-01 19:48:54 +02:00
[anon_sym_of] = ACTIONS(1),
2022-06-01 19:54:09 +02:00
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
2022-06-01 20:11:52 +02:00
[anon_sym_COLON_EQ] = ACTIONS(1),
2022-06-01 20:18:10 +02:00
[anon_sym_if] = ACTIONS(1),
[anon_sym_then] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
2022-06-01 20:19:56 +02:00
[anon_sym_while] = ACTIONS(1),
[anon_sym_do] = ACTIONS(1),
2022-06-01 20:23:04 +02:00
[anon_sym_for] = ACTIONS(1),
[anon_sym_to] = ACTIONS(1),
2022-06-01 20:23:46 +02:00
[sym_break_expression] = ACTIONS(1),
2022-06-01 20:36:14 +02:00
[anon_sym_let] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_end] = ACTIONS(1),
[anon_sym_type] = ACTIONS(1),
2022-06-01 20:53:39 +02:00
[anon_sym_COLON] = ACTIONS(1),
2022-06-01 20:54:35 +02:00
[anon_sym_array] = ACTIONS(1),
2022-06-01 20:48:32 +02:00
[anon_sym_function] = ACTIONS(1),
[anon_sym_primitive] = ACTIONS(1),
[anon_sym_var] = ACTIONS(1),
2022-06-01 20:36:14 +02:00
[anon_sym_import] = ACTIONS(1),
},
[1] = {
[sym_source_file] = STATE(141),
[sym__expr] = STATE(85),
[sym_string_literal] = STATE(85),
[sym__lvalue] = STATE(4),
[sym_record_value] = STATE(4),
[sym_array_value] = STATE(4),
[sym_function_call] = STATE(85),
[sym_unary_expression] = STATE(85),
[sym_binary_expression] = STATE(85),
[sym_sequence_expression] = STATE(85),
[sym_array_expression] = STATE(85),
[sym_record_expression] = STATE(85),
[sym_assignment_expression] = STATE(85),
[sym_if_expression] = STATE(85),
[sym_while_expression] = STATE(85),
[sym_for_expression] = STATE(85),
[sym_let_expression] = STATE(85),
[aux_sym__declaration_chunks] = STATE(72),
[sym__declaration_chunk] = STATE(72),
[sym_type_declaration] = STATE(72),
[sym_function_declaration] = STATE(72),
[sym_primitive_declaration] = STATE(72),
[sym_variable_declaration] = STATE(72),
[sym_import_declaration] = STATE(72),
[aux_sym__declaration_chunk_repeat1] = STATE(72),
[aux_sym__declaration_chunk_repeat2] = STATE(72),
[ts_builtin_sym_end] = ACTIONS(5),
[sym_identifier] = ACTIONS(7),
[sym_comment] = ACTIONS(3),
[sym_nil_literal] = ACTIONS(9),
[sym_integer_literal] = ACTIONS(9),
[anon_sym_DQUOTE] = ACTIONS(11),
[anon_sym_LPAREN] = ACTIONS(13),
[anon_sym_DASH] = ACTIONS(15),
[anon_sym_if] = ACTIONS(17),
[anon_sym_while] = ACTIONS(19),
[anon_sym_for] = ACTIONS(21),
[sym_break_expression] = ACTIONS(9),
[anon_sym_let] = ACTIONS(23),
[anon_sym_type] = ACTIONS(25),
[anon_sym_function] = ACTIONS(27),
[anon_sym_primitive] = ACTIONS(29),
[anon_sym_var] = ACTIONS(31),
[anon_sym_import] = ACTIONS(33),
2022-06-01 19:34:31 +02:00
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(37), 1,
2022-06-01 20:41:25 +02:00
anon_sym_LBRACK,
ACTIONS(40), 1,
2022-06-01 20:48:32 +02:00
anon_sym_LPAREN,
ACTIONS(44), 1,
2022-06-01 20:41:25 +02:00
anon_sym_LBRACE,
ACTIONS(42), 3,
anon_sym_SLASH,
2022-06-01 20:41:25 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(35), 28,
2022-06-01 20:41:25 +02:00
ts_builtin_sym_end,
anon_sym_DOT,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_COLON_EQ,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
anon_sym_import,
[48] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(48), 3,
anon_sym_SLASH,
2022-06-01 20:41:25 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(46), 29,
2022-06-01 20:41:25 +02:00
ts_builtin_sym_end,
anon_sym_DOT,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_COLON_EQ,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
anon_sym_import,
[88] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(52), 1,
anon_sym_DOT,
ACTIONS(54), 1,
2022-06-01 20:41:25 +02:00
anon_sym_LBRACK,
ACTIONS(58), 1,
2022-06-01 20:41:25 +02:00
anon_sym_COLON_EQ,
ACTIONS(56), 3,
anon_sym_SLASH,
2022-06-01 20:41:25 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(50), 26,
2022-06-01 20:41:25 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
anon_sym_import,
[134] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(62), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(60), 29,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_DOT,
anon_sym_LBRACK,
2022-06-01 20:48:32 +02:00
anon_sym_RBRACK,
anon_sym_COMMA,
2022-06-01 20:41:25 +02:00
anon_sym_RPAREN,
2022-06-01 20:37:24 +02:00
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_COLON_EQ,
2022-06-01 20:48:32 +02:00
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
2022-06-01 20:36:14 +02:00
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[174] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:54:35 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(64), 17,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:48:32 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[223] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(82), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(80), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:37:24 +02:00
anon_sym_DASH,
anon_sym_STAR,
2022-06-01 20:48:32 +02:00
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[260] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(86), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(84), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:37:24 +02:00
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[297] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
2022-06-01 20:54:35 +02:00
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:54:35 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:37:24 +02:00
anon_sym_DASH,
2022-06-01 20:54:35 +02:00
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:54:35 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(88), 17,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:48:32 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[346] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(92), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(90), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[383] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(96), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(94), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[420] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(100), 3,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
ACTIONS(98), 26,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:48:32 +02:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[457] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(104), 3,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
ACTIONS(102), 26,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
2022-06-01 20:48:32 +02:00
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[494] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(108), 3,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
ACTIONS(106), 26,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:48:32 +02:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[531] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(112), 3,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
ACTIONS(110), 26,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
2022-06-01 20:48:32 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[568] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(116), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(114), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[605] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:48:32 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:48:32 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(118), 17,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
2022-06-01 20:54:35 +02:00
anon_sym_else,
2022-06-01 20:48:32 +02:00
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[654] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:48:32 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(120), 17,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[703] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(124), 3,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
ACTIONS(122), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
2022-06-01 20:54:35 +02:00
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
2022-06-01 20:48:32 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
2022-06-01 20:48:32 +02:00
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[740] = 10,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
anon_sym_PIPE,
ACTIONS(128), 1,
anon_sym_else,
ACTIONS(66), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(126), 16,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:48:32 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[791] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(132), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(130), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[828] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(136), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(134), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[865] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(140), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(138), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[902] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(144), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(142), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:37:24 +02:00
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
anon_sym_STAR,
2022-06-01 20:54:35 +02:00
anon_sym_PLUS,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[939] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(148), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(146), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[976] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
2022-06-01 20:54:35 +02:00
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:54:35 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:54:35 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(150), 17,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1025] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(154), 3,
anon_sym_SLASH,
2022-06-01 20:54:35 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(152), 26,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1062] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(66), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:54:35 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(156), 18,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1109] = 7,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
2022-06-01 20:54:35 +02:00
anon_sym_STAR,
ACTIONS(70), 1,
2022-06-01 20:54:35 +02:00
anon_sym_SLASH,
ACTIONS(66), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(156), 19,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:48:32 +02:00
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1154] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(158), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(156), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1191] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(162), 3,
anon_sym_SLASH,
anon_sym_LT,
anon_sym_GT,
ACTIONS(160), 26,
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
2022-06-01 20:54:35 +02:00
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
2022-06-01 20:54:35 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
2022-06-01 20:54:35 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1228] = 6,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
2022-06-01 20:54:35 +02:00
anon_sym_STAR,
ACTIONS(70), 1,
2022-06-01 20:54:35 +02:00
anon_sym_SLASH,
ACTIONS(66), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(158), 2,
2022-06-01 20:54:35 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(156), 23,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
2022-06-01 20:54:35 +02:00
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
2022-06-01 20:54:35 +02:00
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1271] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(158), 2,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(156), 25,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1312] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(166), 3,
anon_sym_SLASH,
2022-06-01 20:48:32 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(164), 26,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_RBRACK,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_DASH,
anon_sym_STAR,
anon_sym_PLUS,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
anon_sym_AMP,
anon_sym_PIPE,
anon_sym_SEMI,
anon_sym_RBRACE,
anon_sym_then,
anon_sym_else,
anon_sym_do,
anon_sym_to,
anon_sym_in,
anon_sym_end,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[1349] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(170), 1,
anon_sym_end,
ACTIONS(168), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(69), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
2022-06-01 20:07:00 +02:00
sym_array_expression,
sym_record_expression,
2022-06-01 20:11:52 +02:00
sym_assignment_expression,
2022-06-01 20:18:10 +02:00
sym_if_expression,
2022-06-01 20:19:56 +02:00
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1405] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 19:48:54 +02:00
sym_identifier,
2022-06-01 19:58:40 +02:00
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:18:10 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(174), 1,
2022-06-01 20:54:35 +02:00
anon_sym_end,
ACTIONS(172), 3,
sym_nil_literal,
2022-06-01 19:34:31 +02:00
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:07:00 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(70), 13,
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[1461] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
anon_sym_DASH,
ACTIONS(17), 1,
anon_sym_if,
ACTIONS(19), 1,
anon_sym_while,
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
anon_sym_let,
ACTIONS(178), 1,
anon_sym_RPAREN,
ACTIONS(176), 3,
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(76), 13,
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[1517] = 13,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
anon_sym_DASH,
ACTIONS(17), 1,
anon_sym_if,
ACTIONS(19), 1,
anon_sym_while,
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
anon_sym_let,
ACTIONS(182), 1,
2022-06-01 20:54:35 +02:00
anon_sym_RPAREN,
ACTIONS(180), 3,
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(71), 13,
2022-06-01 19:34:31 +02:00
sym__expr,
sym_string_literal,
2022-06-01 19:58:40 +02:00
sym_function_call,
2022-06-01 19:34:31 +02:00
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
2022-06-01 19:48:54 +02:00
sym_array_expression,
2022-06-01 19:54:09 +02:00
sym_record_expression,
2022-06-01 20:11:52 +02:00
sym_assignment_expression,
2022-06-01 20:18:10 +02:00
sym_if_expression,
2022-06-01 20:19:56 +02:00
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1573] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 19:48:54 +02:00
sym_identifier,
2022-06-01 19:58:40 +02:00
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:18:10 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(184), 3,
sym_nil_literal,
2022-06-01 19:34:31 +02:00
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:07:00 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(81), 13,
2022-06-01 19:34:31 +02:00
sym__expr,
sym_string_literal,
2022-06-01 19:58:40 +02:00
sym_function_call,
2022-06-01 19:34:31 +02:00
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
2022-06-01 19:48:54 +02:00
sym_array_expression,
2022-06-01 19:54:09 +02:00
sym_record_expression,
2022-06-01 20:11:52 +02:00
sym_assignment_expression,
2022-06-01 20:18:10 +02:00
sym_if_expression,
2022-06-01 20:19:56 +02:00
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1626] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 19:48:54 +02:00
sym_identifier,
2022-06-01 19:58:40 +02:00
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:18:10 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(186), 3,
sym_nil_literal,
2022-06-01 19:34:31 +02:00
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:07:00 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(84), 13,
2022-06-01 19:34:31 +02:00
sym__expr,
sym_string_literal,
2022-06-01 19:58:40 +02:00
sym_function_call,
2022-06-01 19:34:31 +02:00
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
2022-06-01 19:48:54 +02:00
sym_array_expression,
2022-06-01 19:54:09 +02:00
sym_record_expression,
2022-06-01 20:11:52 +02:00
sym_assignment_expression,
2022-06-01 20:18:10 +02:00
sym_if_expression,
2022-06-01 20:19:56 +02:00
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1679] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 19:48:54 +02:00
sym_identifier,
2022-06-01 19:58:40 +02:00
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:18:10 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(188), 3,
sym_nil_literal,
2022-06-01 19:34:31 +02:00
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:07:00 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(79), 13,
2022-06-01 19:34:31 +02:00
sym__expr,
sym_string_literal,
2022-06-01 19:58:40 +02:00
sym_function_call,
2022-06-01 19:34:31 +02:00
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
2022-06-01 19:48:54 +02:00
sym_array_expression,
2022-06-01 19:54:09 +02:00
sym_record_expression,
2022-06-01 20:11:52 +02:00
sym_assignment_expression,
2022-06-01 20:18:10 +02:00
sym_if_expression,
2022-06-01 20:19:56 +02:00
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1732] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(190), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(26), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1785] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(192), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(77), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1838] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(194), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(17), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1891] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(196), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(80), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1944] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(198), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(75), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[1997] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(200), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(33), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[2050] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(202), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(30), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[2103] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:19:56 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:19:56 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:19:56 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(204), 3,
2022-06-01 20:19:56 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:19:56 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(32), 13,
2022-06-01 20:19:56 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
2022-06-01 20:23:04 +02:00
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[2156] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:23:04 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:23:04 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:23:04 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:23:04 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:36:14 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:37:24 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:36:14 +02:00
anon_sym_let,
ACTIONS(206), 3,
2022-06-01 20:23:04 +02:00
sym_nil_literal,
sym_integer_literal,
2022-06-01 20:23:46 +02:00
sym_break_expression,
STATE(4), 3,
2022-06-01 20:23:04 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(29), 13,
2022-06-01 20:23:04 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
2022-06-01 20:36:14 +02:00
sym_let_expression,
[2209] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:41:25 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:41:25 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:41:25 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:41:25 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:41:25 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:41:25 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:41:25 +02:00
anon_sym_let,
ACTIONS(208), 3,
2022-06-01 20:41:25 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:41:25 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(28), 13,
2022-06-01 20:41:25 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2262] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:41:25 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:41:25 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:41:25 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:41:25 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:41:25 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:41:25 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:41:25 +02:00
anon_sym_let,
ACTIONS(210), 3,
2022-06-01 20:41:25 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:41:25 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(6), 13,
2022-06-01 20:41:25 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2315] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(212), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(82), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2368] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(214), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(25), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2421] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(216), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(78), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2474] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(218), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(9), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2527] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(220), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(65), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2580] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(222), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(83), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2633] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(224), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(64), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2686] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(226), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(66), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2739] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(228), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(18), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2792] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
2022-06-01 20:48:32 +02:00
ACTIONS(13), 1,
anon_sym_LPAREN,
2022-06-01 20:48:32 +02:00
ACTIONS(15), 1,
anon_sym_DASH,
2022-06-01 20:48:32 +02:00
ACTIONS(17), 1,
anon_sym_if,
2022-06-01 20:48:32 +02:00
ACTIONS(19), 1,
anon_sym_while,
2022-06-01 20:48:32 +02:00
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
2022-06-01 20:48:32 +02:00
anon_sym_let,
ACTIONS(230), 3,
2022-06-01 20:48:32 +02:00
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
2022-06-01 20:48:32 +02:00
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(74), 13,
2022-06-01 20:48:32 +02:00
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2845] = 12,
ACTIONS(3), 1,
sym_comment,
ACTIONS(7), 1,
sym_identifier,
ACTIONS(11), 1,
anon_sym_DQUOTE,
ACTIONS(13), 1,
anon_sym_LPAREN,
ACTIONS(15), 1,
anon_sym_DASH,
ACTIONS(17), 1,
anon_sym_if,
ACTIONS(19), 1,
anon_sym_while,
ACTIONS(21), 1,
anon_sym_for,
ACTIONS(23), 1,
anon_sym_let,
ACTIONS(232), 3,
sym_nil_literal,
sym_integer_literal,
sym_break_expression,
STATE(4), 3,
sym__lvalue,
sym_record_value,
sym_array_value,
STATE(20), 13,
sym__expr,
sym_string_literal,
sym_function_call,
sym_unary_expression,
sym_binary_expression,
sym_sequence_expression,
sym_array_expression,
sym_record_expression,
sym_assignment_expression,
sym_if_expression,
sym_while_expression,
sym_for_expression,
sym_let_expression,
[2898] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:11:52 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:23:04 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:36:14 +02:00
anon_sym_LT,
2022-06-01 20:48:32 +02:00
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:48:32 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(234), 7,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
2022-06-01 20:41:25 +02:00
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
anon_sym_import,
[2937] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:41:25 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:36:14 +02:00
anon_sym_DASH,
2022-06-01 20:41:25 +02:00
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:41:25 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(236), 7,
2022-06-01 20:41:25 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
anon_sym_import,
[2976] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:36:14 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:36:14 +02:00
anon_sym_DASH,
2022-06-01 20:41:25 +02:00
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:41:25 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:36:14 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
ACTIONS(238), 7,
2022-06-01 20:41:25 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
anon_sym_import,
[3015] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(242), 1,
anon_sym_type,
ACTIONS(245), 1,
anon_sym_function,
ACTIONS(248), 1,
anon_sym_primitive,
ACTIONS(251), 1,
anon_sym_var,
ACTIONS(254), 1,
anon_sym_import,
ACTIONS(240), 2,
ts_builtin_sym_end,
anon_sym_in,
STATE(67), 9,
aux_sym__declaration_chunks,
sym__declaration_chunk,
sym_type_declaration,
sym_function_declaration,
sym_primitive_declaration,
sym_variable_declaration,
sym_import_declaration,
aux_sym__declaration_chunk_repeat1,
aux_sym__declaration_chunk_repeat2,
[3049] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(257), 1,
2022-06-01 20:54:35 +02:00
anon_sym_in,
ACTIONS(259), 1,
2022-06-01 20:54:35 +02:00
anon_sym_type,
ACTIONS(261), 1,
2022-06-01 20:54:35 +02:00
anon_sym_function,
ACTIONS(263), 1,
2022-06-01 20:54:35 +02:00
anon_sym_primitive,
ACTIONS(265), 1,
2022-06-01 20:54:35 +02:00
anon_sym_var,
ACTIONS(267), 1,
2022-06-01 20:54:35 +02:00
anon_sym_import,
STATE(67), 9,
2022-06-01 20:54:35 +02:00
aux_sym__declaration_chunks,
sym__declaration_chunk,
sym_type_declaration,
sym_function_declaration,
sym_primitive_declaration,
sym_variable_declaration,
sym_import_declaration,
aux_sym__declaration_chunk_repeat1,
aux_sym__declaration_chunk_repeat2,
[3082] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
2022-06-01 20:54:35 +02:00
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:54:35 +02:00
anon_sym_PIPE,
ACTIONS(269), 1,
2022-06-01 20:54:35 +02:00
anon_sym_SEMI,
ACTIONS(271), 1,
2022-06-01 20:54:35 +02:00
anon_sym_end,
STATE(115), 1,
2022-06-01 20:54:35 +02:00
aux_sym_sequence_expression_repeat1,
ACTIONS(66), 2,
2022-06-01 20:36:14 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:36:14 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:36:14 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3121] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:36:14 +02:00
anon_sym_PIPE,
ACTIONS(269), 1,
anon_sym_SEMI,
ACTIONS(273), 1,
anon_sym_end,
STATE(121), 1,
2022-06-01 20:53:39 +02:00
aux_sym_sequence_expression_repeat1,
ACTIONS(66), 2,
2022-06-01 20:19:56 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:07:00 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3160] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:07:00 +02:00
anon_sym_PIPE,
ACTIONS(275), 1,
2022-06-01 20:54:35 +02:00
anon_sym_COMMA,
ACTIONS(277), 1,
2022-06-01 20:54:35 +02:00
anon_sym_RPAREN,
STATE(113), 1,
2022-06-01 20:54:35 +02:00
aux_sym_function_call_repeat1,
ACTIONS(66), 2,
2022-06-01 20:11:52 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:11:52 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:11:52 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3199] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(259), 1,
anon_sym_type,
ACTIONS(261), 1,
anon_sym_function,
ACTIONS(263), 1,
anon_sym_primitive,
ACTIONS(265), 1,
anon_sym_var,
ACTIONS(267), 1,
anon_sym_import,
ACTIONS(279), 1,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
2022-06-01 20:53:39 +02:00
STATE(67), 9,
aux_sym__declaration_chunks,
sym__declaration_chunk,
sym_type_declaration,
sym_function_declaration,
sym_primitive_declaration,
sym_variable_declaration,
sym_import_declaration,
aux_sym__declaration_chunk_repeat1,
aux_sym__declaration_chunk_repeat2,
[3232] = 8,
ACTIONS(3), 1,
sym_comment,
ACTIONS(259), 1,
anon_sym_type,
ACTIONS(261), 1,
anon_sym_function,
ACTIONS(263), 1,
anon_sym_primitive,
ACTIONS(265), 1,
anon_sym_var,
ACTIONS(267), 1,
anon_sym_import,
ACTIONS(281), 1,
anon_sym_in,
STATE(68), 9,
aux_sym__declaration_chunks,
sym__declaration_chunk,
sym_type_declaration,
sym_function_declaration,
sym_primitive_declaration,
sym_variable_declaration,
sym_import_declaration,
aux_sym__declaration_chunk_repeat1,
aux_sym__declaration_chunk_repeat2,
[3265] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:11:52 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
anon_sym_LT,
anon_sym_GT,
ACTIONS(283), 3,
anon_sym_RPAREN,
anon_sym_SEMI,
2022-06-01 20:54:35 +02:00
anon_sym_end,
ACTIONS(72), 4,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3300] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
anon_sym_PIPE,
ACTIONS(285), 1,
anon_sym_COMMA,
ACTIONS(287), 1,
anon_sym_RBRACE,
STATE(118), 1,
aux_sym_record_expression_repeat1,
ACTIONS(66), 2,
2022-06-01 20:07:00 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:07:00 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:36:14 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3339] = 11,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:36:14 +02:00
anon_sym_PIPE,
ACTIONS(269), 1,
anon_sym_SEMI,
ACTIONS(289), 1,
anon_sym_RPAREN,
STATE(114), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(66), 2,
2022-06-01 20:36:14 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:36:14 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3378] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:07:00 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:07:00 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:07:00 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(291), 2,
2022-06-01 20:23:46 +02:00
anon_sym_COMMA,
2022-06-01 20:54:35 +02:00
anon_sym_RBRACE,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3412] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:07:00 +02:00
anon_sym_PIPE,
ACTIONS(66), 2,
2022-06-01 20:07:00 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:07:00 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(293), 2,
2022-06-01 20:36:14 +02:00
anon_sym_COMMA,
2022-06-01 20:54:35 +02:00
anon_sym_RPAREN,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3446] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:07:00 +02:00
anon_sym_PIPE,
ACTIONS(295), 1,
anon_sym_RBRACK,
ACTIONS(66), 2,
2022-06-01 20:07:00 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:07:00 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3479] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:07:00 +02:00
anon_sym_PIPE,
ACTIONS(297), 1,
anon_sym_then,
ACTIONS(66), 2,
2022-06-01 19:58:40 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 19:58:40 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 19:58:40 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3512] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 19:58:40 +02:00
anon_sym_PIPE,
ACTIONS(299), 1,
anon_sym_do,
ACTIONS(66), 2,
2022-06-01 20:07:00 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:07:00 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:07:00 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3545] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:18:10 +02:00
anon_sym_PIPE,
ACTIONS(301), 1,
2022-06-01 20:53:39 +02:00
anon_sym_RBRACK,
ACTIONS(66), 2,
2022-06-01 20:18:10 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:18:10 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:18:10 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3578] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:07:00 +02:00
anon_sym_PIPE,
ACTIONS(303), 1,
anon_sym_do,
ACTIONS(66), 2,
2022-06-01 19:58:40 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 19:58:40 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 19:58:40 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3611] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:23:04 +02:00
anon_sym_PIPE,
ACTIONS(305), 1,
anon_sym_to,
ACTIONS(66), 2,
2022-06-01 20:23:04 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:23:04 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:23:04 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3644] = 9,
ACTIONS(3), 1,
sym_comment,
ACTIONS(68), 1,
anon_sym_STAR,
ACTIONS(70), 1,
anon_sym_SLASH,
ACTIONS(76), 1,
anon_sym_AMP,
ACTIONS(78), 1,
2022-06-01 20:23:04 +02:00
anon_sym_PIPE,
ACTIONS(279), 1,
ts_builtin_sym_end,
ACTIONS(66), 2,
2022-06-01 20:23:04 +02:00
anon_sym_DASH,
anon_sym_PLUS,
ACTIONS(74), 2,
2022-06-01 20:23:04 +02:00
anon_sym_LT,
anon_sym_GT,
ACTIONS(72), 4,
2022-06-01 20:23:04 +02:00
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ,
anon_sym_LT_GT,
[3677] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(309), 1,
2022-06-01 20:48:32 +02:00
anon_sym_function,
ACTIONS(312), 1,
2022-06-01 20:48:32 +02:00
anon_sym_primitive,
STATE(86), 3,
2022-06-01 20:48:32 +02:00
sym_function_declaration,
sym_primitive_declaration,
aux_sym__declaration_chunk_repeat2,
ACTIONS(307), 5,
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:41:25 +02:00
anon_sym_var,
2022-06-01 20:36:14 +02:00
anon_sym_import,
[3699] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(315), 9,
ts_builtin_sym_end,
anon_sym_EQ,
anon_sym_in,
anon_sym_type,
anon_sym_COLON,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3714] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(319), 1,
anon_sym_type,
STATE(88), 2,
sym_type_declaration,
2022-06-01 20:48:32 +02:00
aux_sym__declaration_chunk_repeat1,
ACTIONS(317), 6,
2022-06-01 20:37:24 +02:00
ts_builtin_sym_end,
anon_sym_in,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:41:25 +02:00
anon_sym_var,
2022-06-01 20:36:14 +02:00
anon_sym_import,
[3733] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(322), 9,
ts_builtin_sym_end,
anon_sym_EQ,
anon_sym_in,
anon_sym_type,
anon_sym_COLON,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3748] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(324), 9,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_EQ,
2022-06-01 20:48:32 +02:00
anon_sym_in,
anon_sym_type,
anon_sym_COLON,
anon_sym_function,
anon_sym_primitive,
2022-06-01 20:48:32 +02:00
anon_sym_var,
anon_sym_import,
[3763] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(328), 1,
anon_sym_COLON,
ACTIONS(326), 8,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_EQ,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3780] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(330), 8,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_EQ,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3794] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(332), 7,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3807] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(334), 7,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3820] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(336), 7,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3833] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(338), 7,
2022-06-01 20:48:32 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
2022-06-01 20:48:32 +02:00
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3846] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(340), 7,
2022-06-01 20:53:39 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3859] = 5,
ACTIONS(3), 1,
sym_comment,
ACTIONS(342), 1,
sym_identifier,
ACTIONS(344), 1,
anon_sym_LBRACE,
ACTIONS(346), 1,
anon_sym_array,
STATE(96), 4,
sym__type,
sym_type_alias,
sym_record_type,
sym_array_type,
[3878] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(348), 7,
2022-06-01 20:53:39 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3891] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(350), 7,
2022-06-01 20:53:39 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3904] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(352), 7,
2022-06-01 20:54:35 +02:00
ts_builtin_sym_end,
anon_sym_in,
anon_sym_type,
anon_sym_function,
anon_sym_primitive,
anon_sym_var,
anon_sym_import,
[3917] = 5,
ACTIONS(354), 1,
sym_comment,
ACTIONS(356), 1,
2022-06-01 19:33:42 +02:00
anon_sym_DQUOTE,
ACTIONS(358), 1,
2022-06-01 19:33:42 +02:00
aux_sym_string_literal_token1,
ACTIONS(360), 1,
2022-06-01 19:33:42 +02:00
sym_escape_sequence,
STATE(103), 1,
aux_sym_string_literal_repeat1,
[3933] = 5,
2022-06-01 20:53:39 +02:00
ACTIONS(354), 1,
sym_comment,
ACTIONS(362), 1,
2022-06-01 19:33:42 +02:00
anon_sym_DQUOTE,
ACTIONS(364), 1,
aux_sym_string_literal_token1,
ACTIONS(366), 1,
sym_escape_sequence,
STATE(106), 1,
aux_sym_string_literal_repeat1,
[3949] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(368), 1,
anon_sym_SEMI,
2022-06-01 20:54:35 +02:00
STATE(104), 1,
aux_sym_sequence_expression_repeat1,
ACTIONS(283), 2,
anon_sym_RPAREN,
anon_sym_end,
[3963] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(371), 1,
anon_sym_COMMA,
STATE(105), 1,
2022-06-01 20:54:35 +02:00
aux_sym_record_type_repeat1,
ACTIONS(374), 2,
2022-06-01 20:54:35 +02:00
anon_sym_RPAREN,
anon_sym_RBRACE,
[3977] = 5,
ACTIONS(354), 1,
sym_comment,
ACTIONS(376), 1,
anon_sym_DQUOTE,
ACTIONS(378), 1,
2022-06-01 19:33:42 +02:00
aux_sym_string_literal_token1,
ACTIONS(381), 1,
2022-06-01 19:33:42 +02:00
sym_escape_sequence,
STATE(106), 1,
aux_sym_string_literal_repeat1,
[3993] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(384), 3,
anon_sym_COMMA,
anon_sym_RPAREN,
anon_sym_RBRACE,
[4002] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(386), 1,
anon_sym_COMMA,
ACTIONS(388), 1,
anon_sym_RPAREN,
STATE(105), 1,
aux_sym_record_type_repeat1,
[4015] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(293), 1,
2022-06-01 20:48:32 +02:00
anon_sym_RPAREN,
ACTIONS(390), 1,
2022-06-01 20:48:32 +02:00
anon_sym_COMMA,
STATE(109), 1,
2022-06-01 20:54:35 +02:00
aux_sym_function_call_repeat1,
[4028] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(393), 3,
2022-06-01 20:48:32 +02:00
anon_sym_COMMA,
2022-06-01 20:36:14 +02:00
anon_sym_RPAREN,
2022-06-01 20:54:35 +02:00
anon_sym_RBRACE,
[4037] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(395), 1,
2022-06-01 20:53:39 +02:00
sym_identifier,
ACTIONS(397), 1,
anon_sym_RBRACE,
STATE(117), 1,
2022-06-01 20:53:39 +02:00
sym__typed_field,
[4050] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(386), 1,
anon_sym_COMMA,
ACTIONS(399), 1,
2022-06-01 20:41:25 +02:00
anon_sym_RBRACE,
STATE(105), 1,
aux_sym_record_type_repeat1,
[4063] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(275), 1,
2022-06-01 20:54:35 +02:00
anon_sym_COMMA,
ACTIONS(401), 1,
2022-06-01 20:54:35 +02:00
anon_sym_RPAREN,
STATE(109), 1,
2022-06-01 20:54:35 +02:00
aux_sym_function_call_repeat1,
[4076] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(269), 1,
anon_sym_SEMI,
ACTIONS(403), 1,
2022-06-01 20:37:24 +02:00
anon_sym_RPAREN,
2022-06-01 20:54:35 +02:00
STATE(104), 1,
aux_sym_sequence_expression_repeat1,
[4089] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(269), 1,
2022-06-01 20:54:35 +02:00
anon_sym_SEMI,
ACTIONS(405), 1,
2022-06-01 20:54:35 +02:00
anon_sym_end,
STATE(104), 1,
2022-06-01 20:54:35 +02:00
aux_sym_sequence_expression_repeat1,
[4102] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(407), 1,
2022-06-01 20:53:39 +02:00
anon_sym_COMMA,
ACTIONS(410), 1,
anon_sym_RBRACE,
STATE(116), 1,
aux_sym_record_expression_repeat1,
[4115] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(386), 1,
2022-06-01 20:53:39 +02:00
anon_sym_COMMA,
ACTIONS(412), 1,
2022-06-01 20:54:35 +02:00
anon_sym_RBRACE,
STATE(112), 1,
aux_sym_record_type_repeat1,
[4128] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(285), 1,
anon_sym_COMMA,
ACTIONS(414), 1,
2022-06-01 20:54:35 +02:00
anon_sym_RBRACE,
STATE(116), 1,
aux_sym_record_expression_repeat1,
[4141] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(386), 1,
2022-06-01 20:54:35 +02:00
anon_sym_COMMA,
ACTIONS(416), 1,
2022-06-01 20:54:35 +02:00
anon_sym_RPAREN,
STATE(108), 1,
2022-06-01 20:54:35 +02:00
aux_sym_record_type_repeat1,
[4154] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(395), 1,
2022-06-01 20:53:39 +02:00
sym_identifier,
ACTIONS(418), 1,
anon_sym_RPAREN,
STATE(119), 1,
sym__typed_field,
[4167] = 4,
ACTIONS(3), 1,
sym_comment,
ACTIONS(269), 1,
anon_sym_SEMI,
ACTIONS(420), 1,
anon_sym_end,
STATE(104), 1,
aux_sym_sequence_expression_repeat1,
[4180] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(422), 1,
2022-06-01 20:48:32 +02:00
sym_identifier,
ACTIONS(424), 1,
anon_sym_RBRACE,
[4190] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(426), 1,
2022-06-01 20:53:39 +02:00
sym_identifier,
STATE(95), 1,
2022-06-01 20:53:39 +02:00
sym__function_declaration_common,
[4200] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(428), 1,
anon_sym_LPAREN,
STATE(91), 1,
sym_parameters,
[4210] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(430), 1,
anon_sym_COLON_EQ,
ACTIONS(432), 1,
2022-06-01 20:53:39 +02:00
anon_sym_COLON,
[4220] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(11), 1,
2022-06-01 20:54:35 +02:00
anon_sym_DQUOTE,
STATE(101), 1,
2022-06-01 20:54:35 +02:00
sym_string_literal,
[4230] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(395), 1,
2022-06-01 20:54:35 +02:00
sym_identifier,
STATE(107), 1,
sym__typed_field,
[4240] = 3,
ACTIONS(3), 1,
sym_comment,
ACTIONS(426), 1,
sym_identifier,
STATE(146), 1,
sym__function_declaration_common,
[4250] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(434), 1,
anon_sym_COLON_EQ,
[4257] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(436), 1,
sym_identifier,
[4264] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(438), 1,
2022-06-01 20:53:39 +02:00
sym_identifier,
[4271] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(440), 1,
sym_identifier,
[4278] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(442), 1,
anon_sym_EQ,
[4285] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(444), 1,
2022-06-01 20:53:39 +02:00
sym_identifier,
[4292] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(446), 1,
2022-06-01 20:53:39 +02:00
sym_identifier,
[4299] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(448), 1,
anon_sym_of,
[4306] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(450), 1,
anon_sym_of,
[4313] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(452), 1,
anon_sym_EQ,
[4320] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(454), 1,
2022-06-01 20:54:35 +02:00
sym_identifier,
[4327] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(456), 1,
2022-06-01 20:54:35 +02:00
anon_sym_EQ,
[4334] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(458), 1,
ts_builtin_sym_end,
[4341] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(460), 1,
anon_sym_COLON_EQ,
[4348] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(462), 1,
2022-06-01 20:54:35 +02:00
sym_identifier,
[4355] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(464), 1,
2022-06-01 20:54:35 +02:00
sym_identifier,
[4362] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(466), 1,
anon_sym_COLON,
[4369] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(468), 1,
anon_sym_EQ,
[4376] = 2,
ACTIONS(3), 1,
sym_comment,
ACTIONS(470), 1,
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 48,
[SMALL_STATE(4)] = 88,
[SMALL_STATE(5)] = 134,
[SMALL_STATE(6)] = 174,
[SMALL_STATE(7)] = 223,
[SMALL_STATE(8)] = 260,
[SMALL_STATE(9)] = 297,
[SMALL_STATE(10)] = 346,
[SMALL_STATE(11)] = 383,
[SMALL_STATE(12)] = 420,
[SMALL_STATE(13)] = 457,
[SMALL_STATE(14)] = 494,
[SMALL_STATE(15)] = 531,
[SMALL_STATE(16)] = 568,
[SMALL_STATE(17)] = 605,
[SMALL_STATE(18)] = 654,
[SMALL_STATE(19)] = 703,
[SMALL_STATE(20)] = 740,
[SMALL_STATE(21)] = 791,
[SMALL_STATE(22)] = 828,
[SMALL_STATE(23)] = 865,
[SMALL_STATE(24)] = 902,
[SMALL_STATE(25)] = 939,
[SMALL_STATE(26)] = 976,
[SMALL_STATE(27)] = 1025,
[SMALL_STATE(28)] = 1062,
[SMALL_STATE(29)] = 1109,
[SMALL_STATE(30)] = 1154,
[SMALL_STATE(31)] = 1191,
[SMALL_STATE(32)] = 1228,
[SMALL_STATE(33)] = 1271,
[SMALL_STATE(34)] = 1312,
[SMALL_STATE(35)] = 1349,
[SMALL_STATE(36)] = 1405,
[SMALL_STATE(37)] = 1461,
[SMALL_STATE(38)] = 1517,
[SMALL_STATE(39)] = 1573,
[SMALL_STATE(40)] = 1626,
[SMALL_STATE(41)] = 1679,
[SMALL_STATE(42)] = 1732,
[SMALL_STATE(43)] = 1785,
[SMALL_STATE(44)] = 1838,
[SMALL_STATE(45)] = 1891,
[SMALL_STATE(46)] = 1944,
[SMALL_STATE(47)] = 1997,
[SMALL_STATE(48)] = 2050,
[SMALL_STATE(49)] = 2103,
[SMALL_STATE(50)] = 2156,
[SMALL_STATE(51)] = 2209,
[SMALL_STATE(52)] = 2262,
[SMALL_STATE(53)] = 2315,
[SMALL_STATE(54)] = 2368,
[SMALL_STATE(55)] = 2421,
[SMALL_STATE(56)] = 2474,
[SMALL_STATE(57)] = 2527,
[SMALL_STATE(58)] = 2580,
[SMALL_STATE(59)] = 2633,
[SMALL_STATE(60)] = 2686,
[SMALL_STATE(61)] = 2739,
[SMALL_STATE(62)] = 2792,
[SMALL_STATE(63)] = 2845,
[SMALL_STATE(64)] = 2898,
[SMALL_STATE(65)] = 2937,
[SMALL_STATE(66)] = 2976,
[SMALL_STATE(67)] = 3015,
[SMALL_STATE(68)] = 3049,
[SMALL_STATE(69)] = 3082,
[SMALL_STATE(70)] = 3121,
[SMALL_STATE(71)] = 3160,
[SMALL_STATE(72)] = 3199,
[SMALL_STATE(73)] = 3232,
[SMALL_STATE(74)] = 3265,
[SMALL_STATE(75)] = 3300,
[SMALL_STATE(76)] = 3339,
[SMALL_STATE(77)] = 3378,
[SMALL_STATE(78)] = 3412,
[SMALL_STATE(79)] = 3446,
[SMALL_STATE(80)] = 3479,
[SMALL_STATE(81)] = 3512,
[SMALL_STATE(82)] = 3545,
[SMALL_STATE(83)] = 3578,
[SMALL_STATE(84)] = 3611,
[SMALL_STATE(85)] = 3644,
[SMALL_STATE(86)] = 3677,
[SMALL_STATE(87)] = 3699,
[SMALL_STATE(88)] = 3714,
[SMALL_STATE(89)] = 3733,
[SMALL_STATE(90)] = 3748,
[SMALL_STATE(91)] = 3763,
[SMALL_STATE(92)] = 3780,
[SMALL_STATE(93)] = 3794,
[SMALL_STATE(94)] = 3807,
[SMALL_STATE(95)] = 3820,
[SMALL_STATE(96)] = 3833,
[SMALL_STATE(97)] = 3846,
[SMALL_STATE(98)] = 3859,
[SMALL_STATE(99)] = 3878,
[SMALL_STATE(100)] = 3891,
[SMALL_STATE(101)] = 3904,
[SMALL_STATE(102)] = 3917,
[SMALL_STATE(103)] = 3933,
[SMALL_STATE(104)] = 3949,
[SMALL_STATE(105)] = 3963,
[SMALL_STATE(106)] = 3977,
[SMALL_STATE(107)] = 3993,
[SMALL_STATE(108)] = 4002,
[SMALL_STATE(109)] = 4015,
[SMALL_STATE(110)] = 4028,
[SMALL_STATE(111)] = 4037,
[SMALL_STATE(112)] = 4050,
[SMALL_STATE(113)] = 4063,
[SMALL_STATE(114)] = 4076,
[SMALL_STATE(115)] = 4089,
[SMALL_STATE(116)] = 4102,
[SMALL_STATE(117)] = 4115,
[SMALL_STATE(118)] = 4128,
[SMALL_STATE(119)] = 4141,
[SMALL_STATE(120)] = 4154,
[SMALL_STATE(121)] = 4167,
[SMALL_STATE(122)] = 4180,
[SMALL_STATE(123)] = 4190,
[SMALL_STATE(124)] = 4200,
[SMALL_STATE(125)] = 4210,
[SMALL_STATE(126)] = 4220,
[SMALL_STATE(127)] = 4230,
[SMALL_STATE(128)] = 4240,
[SMALL_STATE(129)] = 4250,
[SMALL_STATE(130)] = 4257,
[SMALL_STATE(131)] = 4264,
[SMALL_STATE(132)] = 4271,
[SMALL_STATE(133)] = 4278,
[SMALL_STATE(134)] = 4285,
[SMALL_STATE(135)] = 4292,
[SMALL_STATE(136)] = 4299,
[SMALL_STATE(137)] = 4306,
[SMALL_STATE(138)] = 4313,
[SMALL_STATE(139)] = 4320,
[SMALL_STATE(140)] = 4327,
[SMALL_STATE(141)] = 4334,
[SMALL_STATE(142)] = 4341,
[SMALL_STATE(143)] = 4348,
[SMALL_STATE(144)] = 4355,
[SMALL_STATE(145)] = 4362,
[SMALL_STATE(146)] = 4369,
[SMALL_STATE(147)] = 4376,
};
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_source_file, 0),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2),
[9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45),
[19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73),
[25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123),
[31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126),
[35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lvalue, 1),
[37] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__lvalue, 1), SHIFT(41),
[40] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[42] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lvalue, 1),
[44] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122),
[46] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_value, 3, .production_id = 8),
[48] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_value, 3, .production_id = 8),
[50] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr, 1),
[52] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139),
[54] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53),
[56] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr, 1),
[58] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54),
[60] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_value, 4, .production_id = 17),
[62] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_value, 4, .production_id = 17),
[64] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, .production_id = 23),
[66] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47),
[68] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48),
[70] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48),
[72] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49),
[74] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49),
[76] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50),
[78] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[80] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 4, .production_id = 10),
[82] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 4, .production_id = 10),
[84] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 6, .production_id = 26),
[86] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 6, .production_id = 26),
[88] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 6, .production_id = 25),
[90] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 6, .production_id = 24),
[92] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 6, .production_id = 24),
[94] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 3),
[96] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 3),
[98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 5, .production_id = 20),
[100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 5, .production_id = 20),
[102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 5, .production_id = 19),
[104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 5, .production_id = 19),
[106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 5, .production_id = 18),
[108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 5, .production_id = 18),
[110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 4, .production_id = 14),
[112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 4, .production_id = 14),
[114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 4, .production_id = 13),
[116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 4, .production_id = 13),
[118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, .production_id = 34),
[120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4, .production_id = 12),
[122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2),
[124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2),
[126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 11),
[128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56),
[130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 4),
[132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 4),
[134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3),
[136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 3),
[138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 7, .production_id = 32),
[140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 7, .production_id = 32),
[142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2),
[144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 2),
[146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 9),
[148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 9),
[150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 1),
[152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 3, .production_id = 5),
[154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 3, .production_id = 5),
[156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 7),
[158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 7),
[160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3),
[162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3),
[164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 4),
[166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 4),
[168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69),
[170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15),
[172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70),
[174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11),
[176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76),
[178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24),
[180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84),
[188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79),
[190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26),
[192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17),
[196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80),
[198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75),
[200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33),
[202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30),
[204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32),
[206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29),
[208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28),
[210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6),
[212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82),
[214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25),
[216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78),
[218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9),
[220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65),
[222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83),
[224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64),
[226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66),
[228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18),
[230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74),
[232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20),
[234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 16),
[236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, .production_id = 15),
[238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, .production_id = 31),
[240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_chunks, 2),
[242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunks, 2), SHIFT_REPEAT(147),
[245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunks, 2), SHIFT_REPEAT(128),
[248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunks, 2), SHIFT_REPEAT(123),
[251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunks, 2), SHIFT_REPEAT(134),
[254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunks, 2), SHIFT_REPEAT(126),
[257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147),
[261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128),
[263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123),
[265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134),
[267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126),
[269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62),
[271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12),
[273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16),
[275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55),
[277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1),
[281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2),
[285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143),
[287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10),
[289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22),
[291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 4, .production_id = 35),
[293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2),
[295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61),
[305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_chunk_repeat2, 2),
[309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunk_repeat2, 2), SHIFT_REPEAT(128),
[312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunk_repeat2, 2), SHIFT_REPEAT(123),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, .production_id = 29),
[317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__declaration_chunk_repeat1, 2),
[319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__declaration_chunk_repeat1, 2), SHIFT_REPEAT(147),
[322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, .production_id = 21),
[324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2),
[326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_common, 2, .production_id = 6),
[328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_declaration_common, 4, .production_id = 22),
[332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias, 1),
[334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .production_id = 27),
[336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primitive_declaration, 2, .production_id = 2),
[338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 15),
[340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 4, .production_id = 29),
[342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93),
[344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111),
[346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137),
[348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 2),
[350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_type, 3, .production_id = 21),
[352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 2, .production_id = 3),
[354] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(),
[356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19),
[358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103),
[360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103),
[362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31),
[364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106),
[366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(62),
[371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, .production_id = 30), SHIFT_REPEAT(127),
[374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, .production_id = 30),
[376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2),
[378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(106),
[381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2), SHIFT_REPEAT(106),
[384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_type_repeat1, 2, .production_id = 21),
[386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127),
[388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87),
[390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_call_repeat1, 2), SHIFT_REPEAT(55),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typed_field, 3, .production_id = 28),
[395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97),
[401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14),
[403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 2, .production_id = 33), SHIFT_REPEAT(143),
[410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 2, .production_id = 33),
[412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100),
[414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23),
[416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89),
[418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90),
[420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13),
[422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27),
[426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124),
[428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120),
[430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57),
[432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135),
[434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110),
[438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129),
[440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125),
[446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142),
[448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52),
[450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[458] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60),
[462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92),
[466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130),
[468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59),
[470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_tiger(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
2022-06-01 19:34:31 +02:00
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
};
return &language;
}
#ifdef __cplusplus
}
#endif