- Added note to `emitCodeQueue()` that instructions will need recursive `emit()` methods
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-11 18:08:52 +02:00
parent f4797b79e2
commit 15617e7ced
1 changed files with 2 additions and 0 deletions

View File

@ -76,6 +76,8 @@ public final class DCodeEmitter : CodeEmitter
private void emitCodeQueue(SList!(Instruction) codeQueue)
{
//TODO: Implement me
//NOTE: I think that every `Instruction` will need an `emit()` method
//of which sometimes can be recursive for instructions that are nested
foreach(Instruction currentInstruction; codeQueue)
{