aboutsummaryrefslogtreecommitdiff
path: root/src/compile/indexing.h
blob: 5b76692b933667e7afe2022edf278b553d486cf7 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This file defines how to compile indexing like `list[i]` or `ptr[]`

#pragma once

#include <stdbool.h>

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

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