From adbb07fdc27af677923fb5453b845c7cd7b135a7 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 19 Mar 2024 14:22:03 -0400 Subject: Module imports --- environment.c | 1 + 1 file changed, 1 insertion(+) (limited to 'environment.c') diff --git a/environment.c b/environment.c index 38b21d23..af875e88 100644 --- a/environment.c +++ b/environment.c @@ -17,6 +17,7 @@ env_t *new_compilation_unit(void) env->type_namespaces = new(table_t); env->globals = new(table_t); env->locals = new(table_t, .fallback=env->globals); + env->imports = new(table_t); struct { const char *name; -- cgit v1.2.3