From 1cbc6acab2c1bd745649a639db023b0f6c87f821 Mon Sep 17 00:00:00 2001 From: bd-912 Date: Tue, 23 Apr 2024 15:04:43 -0600 Subject: Cleanup BoilSimp -> BoilVisitor --- boil/library/TypeFactory.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'boil/library/TypeFactory.java') diff --git a/boil/library/TypeFactory.java b/boil/library/TypeFactory.java index 93966f0..47b97b2 100644 --- a/boil/library/TypeFactory.java +++ b/boil/library/TypeFactory.java @@ -1,5 +1,6 @@ package boil.library; +import misc.*; import java.util.HashMap; public class TypeFactory { @@ -19,6 +20,8 @@ public class TypeFactory { */ String alias; if ((alias = this.map.get(t)) == null) { + MinimalLogger.info(String.format("Creating new alias for %s...", + t)); alias = String.format("t.%d", this.type_num++); this.map.put(t, alias); } -- cgit v1.2.3