No need for specificity here, only in unit tests

This commit is contained in:
Tristan B. Velloza Kildaire 2021-04-01 14:52:52 +02:00
parent 49b9ac29d1
commit ede134e9d8
1 changed files with 6 additions and 6 deletions

View File

@ -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();