From ede134e9d8c708706e0d0266e15f3e9735ec1eb4 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Thu, 1 Apr 2021 14:52:52 +0200 Subject: [PATCH] No need for specificity here, only in unit tests --- source/tlang/compiler/compiler.d | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/tlang/compiler/compiler.d b/source/tlang/compiler/compiler.d index 54288f3..55f8ab6 100644 --- a/source/tlang/compiler/compiler.d +++ b/source/tlang/compiler/compiler.d @@ -52,14 +52,14 @@ void beginCompilation(string[] sourceFiles) { TypeChecker typeChecker = new TypeChecker(modulle); } - catch(CollidingNameException e) - { - gprintln(e.msg, DebugType.ERROR); - //gprintln("Stack trace:\n"~to!(string)(e.info)); - } + // catch(CollidingNameException e) + // { + // gprintln(e.msg, DebugType.ERROR); + // //gprintln("Stack trace:\n"~to!(string)(e.info)); + // } catch(TypeCheckerException e) { - + gprintln(e.msg, DebugType.ERROR); } // typeChecker.check();