Skip to content

Commit

Permalink
Issue checkstyle#9396: Add example of AST for TokenTypes.AT
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayak-gaikwad committed Jul 21, 2021
1 parent 175c5ed commit d6207dd
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/main/java/com/puppycrawl/tools/checkstyle/api/TokenTypes.java
Expand Up @@ -4896,6 +4896,16 @@ public final class TokenTypes {
* to the interface literal signifying the definition of an annotation
* declaration.
*
* <p>For example:</p>
* <pre> @Override </pre>
*
* <p>parses as:</p>
* <pre>
* --ANNOTATION -&gt; ANNOTATION
* |--AT -&gt; @
* `--IDENT -&gt; Override
* </pre>
*
* @see <a href="https://www.jcp.org/en/jsr/detail?id=201">
* JSR201</a>
*/
Expand Down

0 comments on commit d6207dd

Please sign in to comment.