blob: e9b72b12c1b62c46a3c8a2be2168fc8b6475b532 (
plain)
1
2
3
4
5
6
7
8
9
|
// This file defines how to compile lists
#pragma once
#include "../ast.h"
#include "../environment.h"
#include "../stdlib/datatypes.h"
Text_t compile_typed_list(env_t *env, ast_t *ast, type_t *list_type);
Text_t compile_list_method_call(env_t *env, ast_t *ast);
|