Home | History | Annotate | Download | only in javaparser
      1 package com.github.javaparser;
      2 
      3 import static com.github.javaparser.GeneratedJavaParserConstants.GT;
      4 
      5 /**
      6  * Base class for the generated {@link Token}
      7  */
      8 abstract class TokenBase {
      9     /**
     10      * For tracking the >> >>> ambiguity.
     11      */
     12     int realKind = GT;
     13 
     14     /**
     15      * This is the link to the token that JavaParser presents to the user
     16      */
     17     JavaToken javaToken = null;
     18 }
     19