summaryrefslogtreecommitdiff
path: root/chunk.h
diff options
context:
space:
mode:
authorubq323 <ubq323@ubq323.website>2024-06-24 16:51:32 +0100
committerubq323 <ubq323@ubq323.website>2024-06-24 16:51:32 +0100
commitb2c8538a45aeb154d7cb8ced6ea6a8e0eafb0814 (patch)
tree7b1cd4351f210ec62dcdf2e918be59fbb77b6d71 /chunk.h
parent08d7465f5a841366ec4c66f11475ede4e9082a8d (diff)
chunk_wbc -> compile_opcode
Diffstat (limited to 'chunk.h')
-rw-r--r--chunk.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chunk.h b/chunk.h
index afefda0..36452fb 100644
--- a/chunk.h
+++ b/chunk.h
@@ -19,7 +19,7 @@ struct _chunk {
} consts;
};
Chunk chunk_new(State *S);
-size_t chunk_wbc(Compiler *C, uint8_t byte);
+size_t compile_opcode(Compiler *C, uint8_t byte);
size_t chunk_wconst(Compiler *C, Val v);
#endif