summaryrefslogtreecommitdiff
path: root/read.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-08-06 16:44:49 +0100
committerubq323 <ubq323@ubq323.website>2024-08-06 16:48:32 +0100
commita266b97829ebe698a4256890fdf1214e479fe1de (patch)
tree61cc3d7aaae0933ffa3081f88f7514c086b14ae6 /read.h
parent000e8ca43f4968412ed5c8fc514bb6caa3e5c450 (diff)
rearrange and refactor compiler
part 1/? of making compiler use badthing objects instead of separate ast
Diffstat (limited to 'read.h')
-rw-r--r--read.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/read.h b/read.h
index d4c54a2..2da946f 100644
--- a/read.h
+++ b/read.h
@@ -4,5 +4,6 @@
#include "state.h"
#include "val.h"
Val read_expr(State *S, char *str);
+ObjArr *read_exprs(State *S, char *str);
#endif