forked from jasder/antlr
v4: specify generic type
[git-p4: depot-paths = "//depot/code/antlr4/main/": change = 9439]
This commit is contained in:
parent
cf0d47c8fe
commit
22edf77263
|
@ -37,7 +37,7 @@ import java.util.*;
|
|||
public abstract class Recognizer<Symbol, ATNInterpreter extends ATNSimulator> {
|
||||
public static final int EOF=-1;
|
||||
|
||||
protected ANTLRErrorStrategy<Symbol> _errHandler = new DefaultErrorStrategy();
|
||||
protected ANTLRErrorStrategy<Symbol> _errHandler = new DefaultErrorStrategy<Symbol>();
|
||||
|
||||
private List<ANTLRErrorListener<Symbol>> _listeners;
|
||||
|
||||
|
|
Loading…
Reference in New Issue