- Added trailing newline to the comment emitted by `emitHeaderComment()`
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-11 18:04:53 +02:00
parent c91d72d0b9
commit b8c99329aa
1 changed files with 7 additions and 1 deletions

View File

@ -28,6 +28,7 @@ public final class DCodeEmitter : CodeEmitter
emitStaticAllocations(initQueue);
gprintln("Code emittings needed: "~to!(string)(walkLength(codeQueue[])));
emitCodeQueue(codeQueue);
}
/**
@ -59,7 +60,7 @@ public final class DCodeEmitter : CodeEmitter
file.writeln(" *\n * "~headerPhrase);
}
file.writeln(" */");
file.writeln(" */\n");
}
/**
@ -72,4 +73,9 @@ public final class DCodeEmitter : CodeEmitter
{
}
private void emitCodeQueue(SList!(Instruction) codeQueue)
{
//TODO: Implement me
}
}