1 // Logic for parsing a whole file
10 ast_t *parse_file_str(const char *str);
11 ast_t *parse_file(const char *path, jmp_buf *on_err);
13 ast_t *parse_file_body(parse_ctx_t *ctx, const char *pos);
14 ast_t *parse_use(parse_ctx_t *ctx, const char *pos);