forked from jasder/antlr
Remove unused field
This commit is contained in:
parent
fc7977e0d9
commit
094f40c961
|
@ -36,8 +36,7 @@ import org.antlr.v4.runtime.misc.Interval;
|
||||||
public class TerminalNodeImpl implements TerminalNode {
|
public class TerminalNodeImpl implements TerminalNode {
|
||||||
public Token symbol;
|
public Token symbol;
|
||||||
public ParseTree parent;
|
public ParseTree parent;
|
||||||
/** Which ATN node matched this token? */
|
|
||||||
public int s;
|
|
||||||
public TerminalNodeImpl(Token symbol) { this.symbol = symbol; }
|
public TerminalNodeImpl(Token symbol) { this.symbol = symbol; }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue