diff options
Diffstat (limited to 'src/parse/files.h')
| -rw-r--r-- | src/parse/files.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/parse/files.h b/src/parse/files.h index b8dc8726..3073449e 100644 --- a/src/parse/files.h +++ b/src/parse/files.h @@ -7,5 +7,9 @@ #include "../ast.h" #include "context.h" +ast_t *parse_file_str(const char *str); ast_t *parse_file(const char *path, jmp_buf *on_err); + ast_t *parse_file_body(parse_ctx_t *ctx, const char *pos); +ast_t *parse_use(parse_ctx_t *ctx, const char *pos); +ast_t *parse_extern(parse_ctx_t *ctx, const char *pos); |
