Skip to content

Commit

Permalink
Issue #14631: Updated LINK_LITERAL to new AST format
Browse files Browse the repository at this point in the history
  • Loading branch information
Rohanraj123 authored and romani committed Jun 21, 2024
1 parent 11dcd18 commit 0b18ef6
Showing 1 changed file with 6 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -537,13 +537,12 @@ public final class JavadocTokenTypes {
* <p><b>Example:</b></p>
* <pre><code>{&#64;inheritDoc}</code></pre>
* <b>Tree:</b>
* <pre>
* <code> |--JAVADOC_INLINE_TAG[1x0] : [{&#64;inheritDoc}]
* |--JAVADOC_INLINE_TAG_START[1x0] : [{]
* |--INHERIT_DOC_LITERAL[1x1] : [@inheritDoc]
* |--JAVADOC_INLINE_TAG_END[1x12] : [}]
* </code>
* </pre>
* <pre>{@code
* JAVADOC_INLINE_TAG -> JAVADOC_INLINE_TAG
* |--JAVADOC_INLINE_TAG_START -> {
* |--INHERIT_DOC_LITERAL -> @inheritDoc
* |--JAVADOC_INLINE_TAG_END -> }
* }</pre>
*
* @see
* <a href="https://docs.oracle.com/javase/8/docs/technotes/tools/unix/javadoc.html#CHDGJCHC">
Expand Down

0 comments on commit 0b18ef6

Please sign in to comment.