summaryrefslogtreecommitdiff
path: root/com.h
diff options
context:
space:
mode:
Diffstat (limited to 'com.h')
-rw-r--r--com.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/com.h b/com.h
new file mode 100644
index 0000000..f08769e
--- /dev/null
+++ b/com.h
@@ -0,0 +1,18 @@
+#ifndef _com_h
+#define _com_h
+
+typedef struct _compiler Compiler;
+
+#include "state.h"
+#include "chunk.h"
+
+
+struct _compiler {
+ State *S;
+ Chunk *ch;
+};
+Compiler compiler_new(Compiler *outer, Chunk *ch);
+
+#define BYTECODE(C) (C->ch->bc)
+
+#endif