This commit is contained in:
Terence Parr 2013-11-20 16:36:34 -08:00
parent c7e9a410e9
commit 578dcd0799
1 changed files with 3 additions and 1 deletions

View File

@ -85,7 +85,9 @@ public class ParserInterpreter extends Parser {
protected final Deque<Pair<ParserRuleContext, Integer>> _parentContextStack = new ArrayDeque<Pair<ParserRuleContext, Integer>>();
public ParserInterpreter(String grammarFileName, Collection<String> tokenNames, Collection<String> ruleNames, ATN atn, TokenStream input) {
public ParserInterpreter(String grammarFileName, Collection<String> tokenNames,
Collection<String> ruleNames, ATN atn, TokenStream input)
{
super(input);
this.grammarFileName = grammarFileName;
this.atn = atn;