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-09-13 17:18:08 -07:00
|
|
|
#include "stdlib/util.h"
|
2024-02-13 11:42:33 -08:00
|
|
|
#include "environment.h"
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-03-09 15:32:36 -08:00
|
|
|
CORD expr_as_text(env_t *env, CORD expr, type_t *t, CORD color);
|
2024-06-06 13:28:53 -07:00
|
|
|
CORD compile_header(env_t *env, ast_t *ast);
|
|
|
|
CORD compile_file(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-03-06 09:41:18 -08:00
|
|
|
void compile_namespace(env_t *env, const char *ns_name, ast_t *block);
|
2024-07-23 16:46:42 -07:00
|
|
|
CORD compile_namespace_definitions(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-07-23 16:46:42 -07:00
|
|
|
CORD compile_statement_typedefs(env_t *env, ast_t *ast);
|
|
|
|
CORD compile_statement_definitions(env_t *env, ast_t *ast);
|
2024-02-17 16:32:30 -08:00
|
|
|
CORD compile_type_info(env_t *env, 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
|