Vikas Pradhan
Vikas Pradhan
Translated remaining English alt text to Colombian Spanish in README.col.md. (Addresses #105383) Before submitting this pull request, check the changes to see it's only the changes you made intentionally If...
### Problem When using `LexicalPreservingPrinter` with JavaParser, calling: ```java cu.getType(0).addField(PrimitiveType.intType(), "foo"); Code to reproduce var config = new ParserConfiguration(); config.setLexicalPreservationEnabled(true); var cu = new JavaParser(config).parse("class Foo {\n" + "}").getResult().get(); LexicalPreservingPrinter.setup(cu);...