1 19 20 25 26 27 package soot.toolkits.graph; 28 29 import java.util.*; 30 import java.io.*; 31 import soot.*; 32 33 34 41 public class BriefBlockGraph extends BlockGraph 42 { 43 55 public BriefBlockGraph(Body body) { 56 this(new BriefUnitGraph(body)); 57 } 58 59 60 67 public BriefBlockGraph(BriefUnitGraph unitGraph) { 68 super(unitGraph); 69 70 soot.util.PhaseDumper.v().dumpGraph(this, mBody); 71 } 72 } 73 74 75 | Popular Tags |