diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-17 20:40:40 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-17 20:40:40 -0400 |
| commit | 655b6778955c8da782365d86326d3afceccc9a6b (patch) | |
| tree | 701ada7fddf151e4e85ada21507cb5b2fda4d70a /compile.h | |
| parent | 46ee3fc0efc60c3af47c92390d207ce843671b5b (diff) | |
Preface symbols with file prefix
Diffstat (limited to 'compile.h')
| -rw-r--r-- | compile.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -14,9 +14,9 @@ typedef struct { CORD expr_as_text(env_t *env, CORD expr, type_t *t, CORD color); module_code_t compile_file(ast_t *ast); -CORD compile_type_ast(type_ast_t *t); -CORD compile_declaration(type_t *t, const char *name); -CORD compile_type(type_t *t); +CORD compile_type_ast(env_t *env, type_ast_t *t); +CORD compile_declaration(env_t *env, type_t *t, const char *name); +CORD compile_type(env_t *env, type_t *t); CORD compile(env_t *env, ast_t *ast); void compile_namespace(env_t *env, const char *ns_name, ast_t *block); CORD compile_statement(env_t *env, ast_t *ast); |
