forked from jasder/antlr
Add LexerATNSimulator.getTraceStream
This commit is contained in:
parent
f5f3861cb7
commit
40a8759276
|
@ -139,6 +139,10 @@ public class LexerATNSimulator extends ATNSimulator {
|
|||
this.recog = recog;
|
||||
}
|
||||
|
||||
public OutputStream getTraceStream() {
|
||||
return this.traceStream;
|
||||
}
|
||||
|
||||
public void setTraceStream(OutputStream traceStream) {
|
||||
this.traceStream = traceStream;
|
||||
this.trace = traceStream != null;
|
||||
|
|
Loading…
Reference in New Issue