aboutsummaryrefslogtreecommitdiff
path: root/src/compile/indexing.h
blob: 59b5a3ada0ab5621a54949136bb9b8dc53115d18 (plain)
1
2
3
4
5
6
7
8
// This file defines how to compile indexing like `list[i]` or `ptr[]`
#pragma once

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

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