aboutsummaryrefslogtreecommitdiffstats
path: root/src/bootstrap/environment.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bootstrap/environment.h')
-rw-r--r--src/bootstrap/environment.h7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/bootstrap/environment.h b/src/bootstrap/environment.h
index 2d6a34e..5ee21ad 100644
--- a/src/bootstrap/environment.h
+++ b/src/bootstrap/environment.h
@@ -3,14 +3,9 @@
3 3
4#include "objects.h" 4#include "objects.h"
5 5
6typedef struct EnvEntry {
7 Object *symbol;
8 Object *value;
9} EnvEntry;
10
11typedef struct Environment { 6typedef struct Environment {
12 struct Environment *parent; 7 struct Environment *parent;
13 EnvEntry *entries; 8 HashTable *table;
14 bool marked; 9 bool marked;
15} Environment; 10} Environment;
16 11