summaryrefslogtreecommitdiff
path: root/types.h
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-02-06 11:15:32 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2020-02-06 11:15:32 -0500
commitc9bdc5bc684dab3b5d3739b80855be03517d0cd6 (patch)
tree432a40a01437d1efd0fe20046085cef5cab7b3c2 /types.h
parent2dda92f6daf61345fcfc9f482e6725bc5d456c9b (diff)
more work on new ident system; not quite working yet
Diffstat (limited to 'types.h')
-rw-r--r--types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/types.h b/types.h
index 0667549..67c0645 100644
--- a/types.h
+++ b/types.h
@@ -855,6 +855,7 @@ typedef struct ParsedFile {
typedef struct Parser {
Tokenizer *tokr;
Allocator *allocr;
+ Identifiers *globals;
File *file;
Block *block; /* which block are we in? NULL = file scope */
ParsedFile *parsed_file;