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>
|
|
|
|
|
2024-02-13 11:42:33 -08:00
|
|
|
#include "environment.h"
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2025-03-11 12:54:06 -07:00
|
|
|
CORD expr_as_text(CORD expr, type_t *t, CORD color);
|
2024-06-06 13:28:53 -07:00
|
|
|
CORD compile_file(env_t *env, ast_t *ast);
|
2024-09-17 13:20:30 -07:00
|
|
|
CORD compile_file_header(env_t *env, ast_t *ast);
|
2024-06-16 15:09:54 -07:00
|
|
|
CORD compile_declaration(type_t *t, const char *name);
|
|
|
|
CORD compile_type(type_t *t);
|
2024-02-13 11:42:33 -08:00
|
|
|
CORD compile(env_t *env, ast_t *ast);
|
2024-09-17 13:20:30 -07:00
|
|
|
CORD compile_namespace_header(env_t *env, const char *ns_name, ast_t *block);
|
2024-02-13 11:42:33 -08:00
|
|
|
CORD compile_statement(env_t *env, ast_t *ast);
|
2024-10-30 11:02:34 -07:00
|
|
|
CORD compile_statement_type_header(env_t *env, ast_t *ast);
|
|
|
|
CORD compile_statement_namespace_header(env_t *env, ast_t *ast);
|
2025-03-11 12:54:06 -07:00
|
|
|
CORD compile_type_info(type_t *t);
|
2024-04-20 11:55:27 -07:00
|
|
|
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
|