Open
Description
What problem are you trying to solve?
When refactoring large codebases chances are fairly high that a number of Java sources fail to be parsed because of invalid/unexpected tokens in Javadoc (see example below and this issue). Apart from printing out a single message on the console this goes fairly unnoticed and the recipe finishes despite some sources not being processed by the recipe.
Example parsing issue:
@Test
void dontFailParsing() {
rewriteRun(
spec -> spec.parser(JavaParser.fromJavaVersion()
.logCompilationWarningsAndErrors(true)),
java(
"""
package foo.bar;
/**
* This is a broken comment
* <!-- begin-user-doc --> bla <!-- end-user-doc
* -->
*/
public class MyClass {}
"""));
}
Have you considered any alternatives or workarounds?
The only workaround I can think of would be to fix all issues with Javadoc parsing
Describe the solution you'd like
Provide an option (e.g. in the 'rewrite' dsl of the Gradle plugin) to skip parsing of Javadoc for source files.
Additional context
It seems there are more issues with the parsing of Javadoc:
Metadata
Assignees
Type
Projects
Status
Backlog