aboutsummaryrefslogtreecommitdiff
path: root/environment.h
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-02-29 13:28:39 -0500
committerBruce Hill <bruce@bruce-hill.com>2024-02-29 13:28:39 -0500
commit8171a38b7130849e3049a4ea15a4fd06c154d9b0 (patch)
tree7ec4b204e6600ac3dc553d9caadfc722d04d0c8c /environment.h
parent764d9fe73b0c9da918d2ecf2c4031219a1fac5be (diff)
Add type namespaces
Diffstat (limited to 'environment.h')
-rw-r--r--environment.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/environment.h b/environment.h
index 2f5c84dd..5c2e9641 100644
--- a/environment.h
+++ b/environment.h
@@ -17,6 +17,7 @@ typedef struct {
typedef struct {
table_t *types, *globals, *locals;
+ table_t *type_namespaces; // Map of type name -> namespace table
compilation_unit_t *code;
} env_t;