aboutsummaryrefslogtreecommitdiff
path: root/src/compile/statements.h
blob: 4284a61c03cec21a108605af5e0661c7007fb520 (plain)
1
2
3
4
5
6
7
8
9
// This file defines how to compile statements
#pragma once

#include "../ast.h"
#include "../environment.h"
#include "../stdlib/datatypes.h"

Text_t compile_statement(env_t *env, ast_t *ast);
Text_t with_source_info(env_t *env, ast_t *ast, Text_t code);