aboutsummaryrefslogtreecommitdiff
path: root/src/compile/tables.h
blob: 49ae15f31777bb34c63140b7b6c0e59a2dac4784 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This file defines how to compile tables

#pragma once

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

Text_t compile_typed_table(env_t *env, ast_t *ast, type_t *table_type);
Text_t compile_table_method_call(env_t *env, ast_t *ast);