- If an emit transform is missing then show the type is is missing for with the "Base emit"
This commit is contained in:
Tristan B. Velloza Kildaire 2022-12-13 11:45:45 +02:00
parent 8abfda42a4
commit bd725dd2e5
1 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,8 @@ public final class DCodeEmitter : CodeEmitter
return transform(binOpInstr.lhs)~to!(string)(getCharacter(binOpInstr.operator))~transform(binOpInstr.rhs);
}
return "<TODO: Base emit>";
return "<TODO: Base emit: "~to!(string)(instruction.class)~">";
}