summaryrefslogtreecommitdiff
path: root/chunk.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-24 19:30:09 +0100
committerubq323 <ubq323@ubq323.website>2024-06-24 19:30:09 +0100
commitbc47478d855b08023409dbfc8550958991265c14 (patch)
tree804e45dd6b57917ccaf4d64832909061738b41e4 /chunk.h
parentbea93dc98b602472bb36635dfdf425d14d826673 (diff)
keep track of stack position while compiling
Diffstat (limited to 'chunk.h')
-rw-r--r--chunk.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/chunk.h b/chunk.h
index ba01614..2dad595 100644
--- a/chunk.h
+++ b/chunk.h
@@ -19,7 +19,4 @@ struct _chunk {
} consts;
};
Chunk chunk_new(State *S);
-size_t compile_opcode(Compiler *C, uint8_t byte);
-size_t compile_constant(Compiler *C, Val v);
-
#endif