use of org.mapleir.stdlib.util.TabbedStringWriter in project maple-ir by LLVM-but-worse.
the class ControlFlowGraph method toString.
@Override
public String toString() {
TabbedStringWriter sw = new TabbedStringWriter();
for (ExceptionRange<BasicBlock> r : getRanges()) {
sw.print(r.toString() + "\n");
}
int insn = 0;
for (BasicBlock b : vertices()) {
blockToString(sw, this, b, insn);
}
return sw.toString();
}
Aggregations