public boolean testJcTreeConverter(Source source) throws Exception {
return testCompiler(source);
}
protected String convertToString(JCTree tree) {
JcTreePrinter printer = JcTreePrinter.printerWithPositions();
printer.visit(tree);
String string = printer.toString();
return string;
}