aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/compiler.h
diff options
context:
space:
mode:
authorGravatar Tom Willemse2022-06-04 22:00:27 -0700
committerGravatar Tom Willemse2022-06-04 22:00:27 -0700
commit14b3866ac09c80b8f34d79227d743eabb2da0f2a (patch)
tree62eb3137f016ceaec9d0c88e527a663372927d59 /clox/src/compiler.h
parent57ed9226c06b5fbe016e62857fe9662c51da3dfd (diff)
downloadcrafting-interpreters-14b3866ac09c80b8f34d79227d743eabb2da0f2a.tar.gz
crafting-interpreters-14b3866ac09c80b8f34d79227d743eabb2da0f2a.zip
Chapter 26.1, 26.2, 26.3, and 26.4
Diffstat (limited to 'clox/src/compiler.h')
-rw-r--r--clox/src/compiler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/clox/src/compiler.h b/clox/src/compiler.h
index 7de1c20..37e159d 100644
--- a/clox/src/compiler.h
+++ b/clox/src/compiler.h
@@ -5,5 +5,6 @@
#include "vm.h"
ObjFunction *compile(const char *source);
+void markCompilerRoots();
#endif