protected String convertToString(Node tree) {
foldStringConcats(tree);
normalizeNumberLiterals(tree);
StructureFormatter formatter = StructureFormatter.formatterWithoutPositions();
formatter.skipProperty(CharLiteral.class, "value");
formatter.skipProperty(StringLiteral.class, "value");
tree.accept(new SourcePrinter(formatter));
return formatter.finish();
}
protected Node parseWithLombok(Source source) {