Skip to content

Commit

Permalink
Issue checkstyle#14631: Updated VALUE_LITERAL to to new format of AST…
Browse files Browse the repository at this point in the history
… format
  • Loading branch information
Kushagra-Sedwal authored and romani committed Nov 8, 2024
1 parent e61829a commit 745aa5a
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -648,15 +648,15 @@ public final class JavadocTokenTypes {
* <pre><code>{&#64;value Integer#MAX_VALUE}</code></pre>
* <b>Tree:</b>
* <pre>
* <code> |--JAVADOC_INLINE_TAG[1x0] : [&#64;value Integer#MAX_VALUE}]
* |--JAVADOC_INLINE_TAG_START[1x0] : [{]
* |--VALUE_LITERAL[1x1] : [@value]
* |--WS[1x7] : [ ]
* |--REFERENCE[1x8] : [Integer#MAX_VALUE]
* |--CLASS[1x8] : [Integer]
* |--HASH[1x15] : [#]
* |--MEMBER[1x16] : [MAX_VALUE]
* |--JAVADOC_INLINE_TAG_END[1x25] : [}]
* <code> JAVADOC_INLINE_TAG --&gt; JAVADOC_INLINE_TAG
* |--JAVADOC_INLINE_TAG_START --&gt; {
* |--VALUE_LITERAL --&gt; @value
* |--WS --&gt;
* |--REFERENCE --&gt; REFERENCE
* | |--PACKAGE_CLASS --&gt; Integer
* | |--HASH --&gt; #
* | `--MEMBER --&gt; MAX_VALUE
* `--JAVADOC_INLINE_TAG_END --&gt; }
* </code>
* </pre>
*
Expand Down

0 comments on commit 745aa5a

Please sign in to comment.