- Emit code by calling `emit()` on each Instruction object
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-11 18:13:10 +02:00
parent 1e2ef795d6
commit d19edef8f4
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public final class DCodeEmitter : CodeEmitter
foreach(Instruction currentInstruction; codeQueue)
{
file.writeln(currentInstruction);
file.writeln(currentInstruction.emit());
}
}
}