diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-01 12:43:08 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-01 12:43:08 -0400 |
| commit | 0a7062e2d711b5ac7fb71e873f293a8f0d0e8bc6 (patch) | |
| tree | 912ae69dd9906dee11424433ff5367237296b0f6 /src/compile/indexing.h | |
| parent | 5fc7577b5a3bc2c445522dfd5b287e1c6eddc3e9 (diff) | |
Improved error messages
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); |
