debugging message

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@892 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 6a1af4e3ed
commit 939645e847
  1. 4
      jode/jode/expr/LocalStoreOperator.java

@ -18,6 +18,7 @@
*/
package jode.expr;
import jode.GlobalOptions;
import jode.type.Type;
import jode.decompiler.LocalInfo;
import jode.decompiler.TabbedPrintWriter;
@ -42,6 +43,9 @@ public class LocalStoreOperator extends LValueExpression
}
public void updateSubTypes() {
if (parent != null
&& (GlobalOptions.debuggingFlags & GlobalOptions.DEBUG_TYPES) != 0)
GlobalOptions.err.println("local type changed in: "+parent);
local.setType(type);
}

Loading…
Cancel
Save