diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-13 12:01:52 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-13 12:01:52 -0400 |
| commit | 981da7f0c6c47f66120482e7a7885cb5719d6959 (patch) | |
| tree | c0d5bf912e7e477a0486120b8ac4aea8c49833f9 /src/compile/indexing.h | |
| parent | 3a8841af6d15763e4c322c2c7671582ed6c3b006 (diff) | |
| parent | b4f2d03db2cd20688d6bb537904998e997bc48aa (diff) | |
Merge branch 'optional-list-indexing' into dev
Diffstat (limited to 'src/compile/indexing.h')
| -rw-r--r-- | src/compile/indexing.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/compile/indexing.h b/src/compile/indexing.h index bf30f98a..5b76692b 100644 --- a/src/compile/indexing.h +++ b/src/compile/indexing.h @@ -2,8 +2,10 @@ #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); +Text_t compile_indexing(env_t *env, ast_t *ast, bool checked); |
