diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 18:16:32 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 18:16:32 -0400 |
| commit | 7e3e245f6809946ea06ef1998bcabb7e0902fbd7 (patch) | |
| tree | 67c06d75ecff021cd70073f8a7da278cfe7f6410 /src/environment.h | |
| parent | 7198afcfec38f8f0cc82e093567e2b098a42970f (diff) | |
Deprecate `defer`
Diffstat (limited to 'src/environment.h')
| -rw-r--r-- | src/environment.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/environment.h b/src/environment.h index c726508d..ecb6fb4c 100644 --- a/src/environment.h +++ b/src/environment.h @@ -14,17 +14,10 @@ typedef struct { Text_t variable_initializers; } compilation_unit_t; -typedef struct deferral_s { - struct deferral_s *next; - struct env_s *defer_env; - ast_t *block; -} deferral_t; - typedef struct loop_ctx_s { struct loop_ctx_s *next; const char *loop_name; ast_list_t *loop_vars; - deferral_t *deferred; Text_t skip_label, stop_label; } loop_ctx_t; @@ -45,7 +38,6 @@ typedef struct env_s { compilation_unit_t *code; ast_t *fn; loop_ctx_t *loop_ctx; - deferral_t *deferred; Closure_t *comprehension_action; bool do_source_mapping : 1; type_t *current_type; |
