2024-02-04 12:23:59 -08:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <gc/cord.h>
|
|
|
|
#include <gc.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
2024-02-13 11:42:33 -08:00
|
|
|
#include "environment.h"
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-02-13 11:42:33 -08:00
|
|
|
CORD compile_type(env_t *env, type_ast_t *t);
|
|
|
|
CORD compile(env_t *env, ast_t *ast);
|
|
|
|
CORD compile_statement(env_t *env, ast_t *ast);
|
2024-02-04 12:23:59 -08:00
|
|
|
|
|
|
|
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|