From fdc3eadba25aff7894419e483519e73150be33d4 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 14 Mar 2024 02:37:56 -0400 Subject: Array comprehensions --- environment.h | 1 + 1 file changed, 1 insertion(+) (limited to 'environment.h') diff --git a/environment.h b/environment.h index 2ab7a9d2..8abc889a 100644 --- a/environment.h +++ b/environment.h @@ -38,6 +38,7 @@ typedef struct { env_t *new_compilation_unit(void); env_t *global_scope(env_t *env); env_t *fresh_scope(env_t *env); +env_t *for_scope(env_t *env, ast_t *ast); env_t *namespace_env(env_t *env, const char *namespace_name); __attribute__((noreturn)) void compiler_err(file_t *f, const char *start, const char *end, const char *fmt, ...); -- cgit v1.2.3