Skip to content

Commit

Permalink
Issue #14631: Updated exception_literal to new AST format
Browse files Browse the repository at this point in the history
  • Loading branch information
SteLeo1603 authored and romani committed May 6, 2024
1 parent 6daffc6 commit c25f0f2
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -287,13 +287,13 @@ public final class JavadocTokenTypes {
* <pre>{@code @exception SQLException if query is not correct}</pre>
* <b>Tree:</b>
* <pre>{@code
* |--JAVADOC_TAG[3x0] : [@exception SQLException if query is not correct]
* |--EXCEPTION_LITERAL[3x0] : [@exception]
* |--WS[3x10] : [ ]
* |--CLASS_NAME[3x11] : [SQLException]
* |--WS[3x23] : [ ]
* |--DESCRIPTION[3x24] : [if query is not correct]
* |--TEXT[3x24] : [if query is not correct]
* JAVADOC_TAG -> JAVADOC_TAG
* |--EXCEPTION_LITERAL -> @exception
* |--WS ->
* |--CLASS_NAME -> SQLException
* |--WS ->
* `--DESCRIPTION -> DESCRIPTION
* `--TEXT -> if query is not correct
* }</pre>
*
* @see
Expand Down

0 comments on commit c25f0f2

Please sign in to comment.