aboutsummaryrefslogtreecommitdiff
path: root/src/compile/indexing.h
blob: bf30f98a030e20703f841060ccd3c4572f7d6d2f (plain)
1
2
3
4
5
6
7
8
9
// 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);