blob: 18dc792f818b6f9f39dab0de360847d5b340270e (
plain)
1
2
3
4
5
6
7
8
9
10
|
// This file defines how to compile integers
#pragma once
#include "../ast.h"
#include "../environment.h"
#include "../types.h"
Text_t compile_int_to_type(env_t *env, ast_t *ast, type_t *target);
Text_t compile_int(ast_t *ast);
|