tomo/compile.h

25 lines
819 B
C
Raw Normal View History

2024-02-04 12:23:59 -08:00
#pragma once
2024-03-18 09:49:38 -07:00
// Compilation functions
2024-02-04 12:23:59 -08:00
#include <gc/cord.h>
#include <gc.h>
#include <stdio.h>
#include "environment.h"
2024-02-04 12:23:59 -08:00
CORD expr_as_text(env_t *env, CORD expr, type_t *t, CORD color);
CORD compile_file(env_t *env, ast_t *ast);
CORD compile_file_header(env_t *env, ast_t *ast);
CORD compile_declaration(type_t *t, const char *name);
CORD compile_type(type_t *t);
CORD compile(env_t *env, ast_t *ast);
2024-03-06 09:41:18 -08:00
void compile_namespace(env_t *env, const char *ns_name, ast_t *block);
CORD compile_namespace_header(env_t *env, const char *ns_name, ast_t *block);
CORD compile_statement(env_t *env, ast_t *ast);
CORD compile_statement_header(env_t *env, ast_t *ast);
2024-02-17 16:32:30 -08:00
CORD compile_type_info(env_t *env, type_t *t);
CORD compile_cli_arg_call(env_t *env, CORD fn_name, type_t *fn_type);
2024-02-04 12:23:59 -08:00
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0