From b07eecd5a2f4720b131f7fd07ffccac24f7bc570 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Mon, 7 Jun 2021 11:14:38 +0200 Subject: [PATCH] Recursively print dependencies of the Module after running the dependency generator --- source/tlang/compiler/typecheck/core.d | 1 + 1 file changed, 1 insertion(+) diff --git a/source/tlang/compiler/typecheck/core.d b/source/tlang/compiler/typecheck/core.d index 707ca60f..839cf079 100644 --- a/source/tlang/compiler/typecheck/core.d +++ b/source/tlang/compiler/typecheck/core.d @@ -92,6 +92,7 @@ public final class TypeChecker import compiler.typecheck.dependancy; StructuralOrganizer so = new StructuralOrganizer(this); so.checkContainer(modulle); + so.printDeps(modulle); } /**