blob: ed0234a247a0812cecadbfc5007988a513b20080 (
plain)
1
2
3
4
5
6
7
|
#include "../ast.h"
#include "../environment.h"
#include "../stdlib/datatypes.h"
Text_t compile_condition(env_t *env, ast_t *ast);
Text_t compile_statement(env_t *env, ast_t *ast);
Text_t with_source_info(env_t *env, ast_t *ast, Text_t code);
|