@@ -152,8 +152,8 @@ public void pushStackframeWithTypes(ImFunction f, @Nullable ILconstObject receiv
152152 normalized .put (e .getKey (), rhs );
153153 }
154154
155- System .out .println ("pushStackframe " + f + " with receiver " + receiver
156- + " and args " + Arrays .toString (args ) + " and typesubst " + normalized );
155+ // System.out.println("pushStackframe " + f + " with receiver " + receiver
156+ // + " and args " + Arrays.toString(args) + " and typesubst " + normalized);
157157
158158 stackFrames .push (new ILStackFrame (f , receiver , args , trace , normalized ));
159159 de .peeeq .wurstscript .jassIm .Element stmt = this .lastStatement ;
@@ -289,7 +289,7 @@ public ImType case_ImArrayTypeMulti(ImArrayTypeMulti t) {
289289 }
290290
291291 public void pushStackframe (ImCompiletimeExpr f , WPos trace ) {
292- System .out .println ("pushStackframe compiletime expr " + f );
292+ // System.out.println("pushStackframe compiletime expr " + f);
293293 stackFrames .push (new ILStackFrame (f , trace ));
294294 de .peeeq .wurstscript .jassIm .Element stmt = this .lastStatement ;
295295 if (stmt == null ) {
@@ -299,7 +299,7 @@ public void pushStackframe(ImCompiletimeExpr f, WPos trace) {
299299 }
300300
301301 public void popStackframe () {
302- System .out .println ("popStackframe " + (stackFrames .isEmpty () ? "empty" : stackFrames .peek ().f ));
302+ // System.out.println("popStackframe " + (stackFrames.isEmpty() ? "empty" : stackFrames.peek().f));
303303 if (!stackFrames .isEmpty ()) {
304304 stackFrames .pop ();
305305 }
0 commit comments