use of jadx.api.ICodeWriter in project jadx by skylot.
the class DebugUtils method printRegion.
public static void printRegion(MethodNode mth, IRegion region, boolean printInsns) {
ICodeWriter cw = new SimpleCodeWriter();
cw.startLine('|').add(mth.toString());
printRegion(mth, region, cw, "| ", printInsns);
LOG.debug("{}{}", ICodeWriter.NL, cw.finish().getCodeStr());
}
Aggregations