From a42ec986259b029dee22cc03e169a790c13a8b7a Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 17 Jul 2023 16:31:49 +0200 Subject: [PATCH] DGen - If `typeTransform(Type)` fails then the debug text should be in the error coloring --- source/tlang/compiler/codegen/emit/dgen.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tlang/compiler/codegen/emit/dgen.d b/source/tlang/compiler/codegen/emit/dgen.d index aa612ec3..40179519 100644 --- a/source/tlang/compiler/codegen/emit/dgen.d +++ b/source/tlang/compiler/codegen/emit/dgen.d @@ -104,7 +104,7 @@ public final class DCodeEmitter : CodeEmitter // return "KAK TODO"; } - gprintln("Type transform unimplemented"); + gprintln("Type transform unimplemented", DebugType.ERROR); assert(false); // return stringRepr; }