Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue #14631: Updated Version literal to new AST format #14823

Merged
merged 1 commit into from May 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -264,11 +264,11 @@ 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
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@prathm3 , please trim AST upto line 271. This is the only part that we have to document.

We don't need the below lines 272, 273 and also please remove blank line at 274.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

* }</pre>
*
* @see
Expand Down