aboutsummaryrefslogtreecommitdiff
path: root/environment.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-19 14:22:03 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-19 14:22:03 -0400
commitadbb07fdc27af677923fb5453b845c7cd7b135a7 (patch)
tree490caac013b97a49545487c956b8586b82ceeb9c /environment.c
parent7b444cd8249c933fb24e5195d9c511156f8b22f4 (diff)
Module imports
Diffstat (limited to 'environment.c')
-rw-r--r--environment.c1
1 files changed, 1 insertions, 0 deletions
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;