Meta data xml files fail to include what is inside text tags like {@code ...} from modules' javadocs where anything that is ... is not included
Example of generation bug:
|
scope of this check even though a token type like {@code } would match them. |
How it is originally seen in the javadoc of module:
|
* scope of this check even though a token type like {@code VARIABLE_DEF} would match them. |
constructSubTreeText method from JavadocMetadataScraper.java fails to account for this
Besides, JavadocMetadataScraper doesn't convert such javadoc inline tags to the corresponding html <code></code> tags
Expected in xml:
... type like <code>VARIABLE_DEF</code> would ...
Meta data xml files fail to include what is inside text tags like
{@code ...}from modules' javadocs where anything that is ... is not includedExample of generation bug:
checkstyle/src/main/resources/com/puppycrawl/tools/checkstyle/meta/checks/annotation/AnnotationLocationCheck.xml
Line 17 in 781094d
How it is originally seen in the javadoc of module:
checkstyle/src/main/java/com/puppycrawl/tools/checkstyle/checks/annotation/AnnotationLocationCheck.java
Line 40 in 781094d
constructSubTreeText method from JavadocMetadataScraper.java fails to account for this
Besides, JavadocMetadataScraper doesn't convert such javadoc inline tags to the corresponding html
<code></code>tagsExpected in xml:
... type like <code>VARIABLE_DEF</code> would ...