Skip to content

Commit

Permalink
Issue #14631: Updated Version literal to new AST format
Browse files Browse the repository at this point in the history
  • Loading branch information
prathm3 committed Apr 22, 2024
1 parent 05981e0 commit 2dd3253
Showing 1 changed file with 8 additions and 5 deletions.
Expand Up @@ -264,11 +264,14 @@ public final class JavadocTokenTypes {
* <pre>{@code @version 1.3}</pre>
* <b>Tree:</b>
* <pre>{@code
* |--JAVADOC_TAG[3x0] : [@version 1.3]
* |--VERSION_LITERAL[3x0] : [@version]
* |--WS[3x8] : [ ]
* |--DESCRIPTION[3x9] : [1.3]
* |--TEXT[3x9] : [1.3]
* JAVADOC_TAG -> JAVADOC_TAG
* |--VERSION_LITERAL -> @version
* |--WS ->
* `--DESCRIPTION -> DESCRIPTION
* |--TEXT -> 1.3
* |--NEWLINE -> \r\n
* `--TEXT ->
*
* }</pre>
*
* @see
Expand Down

0 comments on commit 2dd3253

Please sign in to comment.