use of abs.frontend.tests.EmptyFormatter in project abstools by abstools.
the class OtherAnalysisTests method prettyPrint.
public static String prettyPrint(Model m2) {
StringWriter writer = new StringWriter();
PrintWriter w = new PrintWriter(writer);
ABSFormatter f = new EmptyFormatter();
m2.doPrettyPrint(w, f);
return writer.toString();
}
use of abs.frontend.tests.EmptyFormatter in project abstools by abstools.
the class PrettyPrinterTests method prettyPrint.
private String prettyPrint(ASTNode<?> d) {
StringWriter writer = new StringWriter();
PrintWriter w = new PrintWriter(writer);
ABSFormatter f = new EmptyFormatter();
d.doPrettyPrint(w, f);
return writer.toString();
}
Aggregations