summaryrefslogtreecommitdiff
path: root/com.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-22 12:23:55 +0100
committerubq323 <ubq323@ubq323.website>2024-06-22 12:23:55 +0100
commit1d496f5f7f01b20fb34e63d1c85a33d8decd1894 (patch)
treeda55156c23b474fa56b012cbb645b244adf42402 /com.h
parentba0eb2042cefce45efa5c1ad294f05d0122815ee (diff)
add function literals
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