aboutsummaryrefslogtreecommitdiffstats
path: root/src/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.h')
-rwxr-xr-xsrc/parser.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/parser.h b/src/parser.h
index fa8858e..41dafa7 100755
--- a/src/parser.h
+++ b/src/parser.h
@@ -37,6 +37,7 @@ typedef struct Object {
37 struct { 37 struct {
38 struct Object *head; 38 struct Object *head;
39 struct Object *tail; 39 struct Object *tail;
40 size_t n_elems;
40 }; 41 };
41 42
42 // OBJ_TYPE_LAMBDA 43 // OBJ_TYPE_LAMBDA
@@ -61,6 +62,7 @@ typedef struct Object {
61 }; 62 };
62 }; 63 };
63 64
65 bool visited;
64 size_t line; 66 size_t line;
65 size_t col; 67 size_t col;
66} Object; 68} Object;