aboutsummaryrefslogtreecommitdiff
path: root/compile.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-18 02:34:39 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-18 02:34:39 -0500
commitbd0a618f4cb31c5e3d0a97bf75d72099cad31c86 (patch)
tree2954d86fcd76a5d440899247bd5944da9a0ab6f2 /compile.h
parent6d54150755a3addd248f329851d463745cbdb847 (diff)
Type compiling stuff
Diffstat (limited to 'compile.h')
-rw-r--r--compile.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/compile.h b/compile.h
index ac465d7a..f17178a2 100644
--- a/compile.h
+++ b/compile.h
@@ -12,7 +12,8 @@ typedef struct {
} module_code_t;
module_code_t compile_file(ast_t *ast);
-CORD compile_type_ast(env_t *env, type_ast_t *t);
+CORD compile_type_ast(type_ast_t *t);
+CORD compile_type(type_t *t);
CORD compile(env_t *env, ast_t *ast);
CORD compile_statement(env_t *env, ast_t *ast);
CORD compile_type_info(env_t *env, type_t *t);