return testCompiler(source);
}
protected String convertToString(JCTree tree) {
JcTreePrinter printer = JcTreePrinter.printerWithPositions();
printer.visit(tree);
String string = printer.toString();
return string;
}
protected boolean checkForLombokAstParseFailure() {