super(g, t, autoGenType);
not = inverted;
TokenSymbol ts = grammar.tokenManager.getTokenSymbol(atomText);
if (ts == null) {
g.antlrTool.error("Undefined token symbol: " +
atomText, grammar.getFilename(), t.getLine(), t.getColumn());
}
else {
tokenType = ts.getTokenType();
// set the AST node type to whatever was set in tokens {...}
// section (if anything);
// Lafter, after this is created, the element option can set this.
setASTNodeType(ts.getASTNodeType());
}
line = t.getLine();