simplify() method

git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@634 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent bcd845a998
commit 692f12daed
  1. 5
      jode/jode/flow/FlowBlock.java

@ -25,6 +25,7 @@ import jode.decompiler.TabbedPrintWriter;
import jode.decompiler.CodeAnalyzer;
import jode.expr.Expression;
import jode.expr.CombineableOperator;
import jode.util.SimpleDictionary;
/**
* A flow block is the structure of which the flow graph consists. A
@ -1490,6 +1491,10 @@ public class FlowBlock {
block.makeDeclaration(param);
}
public void simplify() {
block.simplify();
}
/**
* Print the source code for this structured block. This handles
* everything that is unique for all structured blocks and calls

Loading…
Cancel
Save