aboutsummaryrefslogtreecommitdiff
path: root/src/parse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parse.h')
-rw-r--r--src/parse.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/parse.h b/src/parse.h
deleted file mode 100644
index 7d16b995..00000000
--- a/src/parse.h
+++ /dev/null
@@ -1,12 +0,0 @@
-#pragma once
-
-// Parsing logic
-
-#include <setjmp.h>
-
-#include "ast.h"
-
-type_ast_t *parse_type_str(const char *str);
-ast_t *parse_file(const char *path, jmp_buf *on_err);
-ast_t *parse(const char *str);
-ast_t *parse_expression(const char *str);