Types of Values 18

This commit is contained in:
nazrin 2025-06-05 00:55:26 +00:00
parent 41404633da
commit 10c44eab2e
7 changed files with 230 additions and 28 deletions

View file

@ -11,7 +11,7 @@ import clox.container.varint;
struct Emitter{
Compiler* compiler;
Chunk* chunk;
private uint line;
private uint line = 1;
Chunk* currentChunk(){
return chunk;
}