aboutsummaryrefslogtreecommitdiff
path: root/src/compile/fieldaccess.h
blob: 849df080ab297c63dc6ad0f8c5f44822fa9a0568 (plain)
1
2
3
4
5
6
7
8
// This file defines how to compile field accessing like `foo.x`
#pragma once

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

Text_t compile_field_access(env_t *env, ast_t *ast);