summaryrefslogtreecommitdiff
path: root/chunk.h
diff options
context:
space:
mode:
Diffstat (limited to 'chunk.h')
-rw-r--r--chunk.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/chunk.h b/chunk.h
new file mode 100644
index 0000000..afefda0
--- /dev/null
+++ b/chunk.h
@@ -0,0 +1,25 @@
+#ifndef _chunk_h
+#define _chunk_h
+
+typedef struct _chunk Chunk;
+typedef struct _compiler Compiler;
+typedef struct _state State;
+
+
+struct _chunk {
+ struct {
+ size_t len;
+ size_t cap;
+ uint8_t *d;
+ } bc;
+ struct {
+ size_t len;
+ size_t cap;
+ Val *d;
+ } consts;
+};
+Chunk chunk_new(State *S);
+size_t chunk_wbc(Compiler *C, uint8_t byte);
+size_t chunk_wconst(Compiler *C, Val v);
+
+#endif