List of usage examples for org.antlr.v4.runtime CommonToken subclass-usage
From source file edu.clemson.cs.r2jt.absynnew.ResolveToken.java
/** * <p>A special token that overrides the "equals" logic present in the default * implementation of {@link CommonToken}. Turns out this is functionally * equivalent to our now removed <tt>PosSymbol</tt> class.</p> */ public class ResolveToken extends CommonToken {
From source file edu.clemson.cs.rsrg.parsing.data.ResolveToken.java
/**
* <p>A special token that overrides the {@link #equals(Object)}} logic present in the default
* implementation of {@link CommonToken}.</p>
*
* @author Yu-Shan Sun
* @author Daniel Welch
From source file net.certiv.json.parser.JsonToken.java
@SuppressWarnings("serial") public class JsonToken extends CommonToken { public static final boolean FULL = true; public static final boolean BASIC = false;
From source file org.eclipse.titan.designer.parsers.asn1parser.TokenWithIndexAndSubTokens.java
/** * @author Laszlo Baji */ public class TokenWithIndexAndSubTokens extends CommonToken { private static final long serialVersionUID = 3906412166039744425L;
From source file org.ledyba.sora.parser.FortranToken.java
public class FortranToken extends CommonToken { public FortranToken(Pair<TokenSource, CharStream> src, int type, int channel, int start, int stop) { super(src, type, channel, start, stop); } public FortranToken(int type) {