aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index c117c61..2c5cb61 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -5,6 +5,7 @@
5 5
6typedef struct Environment { 6typedef struct Environment {
7 struct Object **locals; 7 struct Object **locals;
8 struct Object **params;
8 struct Environment *parent; 9 struct Environment *parent;
9} Environment; 10} Environment;
10 11