Files
thesis-lisp/compiler/include/compile.h
T
2021-04-06 17:38:09 +03:00

9 lines
195 B
C

#pragma once
struct context;
struct function;
struct node;
void emit(struct function *fn, struct context *ctx, struct node *expr);
void emit_function(struct context *ctx, struct function *fn);