Fixing BufferedTokenStream.getTokenStream() calls
This commit is contained in:
parent
0e09f8b659
commit
e051b1a0f8
|
@ -260,9 +260,6 @@ BufferedTokenStream.prototype.setTokenSource = function(tokenSource) {
|
|||
this.index = -1;
|
||||
};
|
||||
|
||||
BufferedTokenStream.prototype.getTokenSource = function() {
|
||||
return this.tokenSource;
|
||||
};
|
||||
|
||||
// Given a starting index, return the index of the next token on channel.
|
||||
// Return i if tokens[i] is on channel. Return -1 if there are no tokens
|
||||
|
|
|
@ -322,7 +322,7 @@ Parser.prototype.compileParseTreePattern = function(pattern, patternRuleIndex, l
|
|||
lexer = lexer || null;
|
||||
if (lexer === null) {
|
||||
if (this.getTokenStream() !== null) {
|
||||
var tokenSource = this.getTokenStream().getTokenSource();
|
||||
var tokenSource = this.getTokenStream().tokenSource;
|
||||
if (tokenSource instanceof Lexer) {
|
||||
lexer = tokenSource;
|
||||
}
|
||||
|
|
|
@ -217,8 +217,7 @@ class BufferedTokenStream(TokenStream):
|
|||
self.tokens = []
|
||||
self.index = -1
|
||||
|
||||
def getTokenSource(self):
|
||||
return self.tokenSource
|
||||
|
||||
|
||||
# Given a starting index, return the index of the next token on channel.
|
||||
# Return i if tokens[i] is on channel. Return -1 if there are no tokens
|
||||
|
|
|
@ -280,7 +280,7 @@ class Parser (Recognizer):
|
|||
def compileParseTreePattern(self, pattern, patternRuleIndex, lexer = None):
|
||||
if lexer is None:
|
||||
if self.getTokenStream() is not None:
|
||||
tokenSource = self.getTokenStream().getTokenSource()
|
||||
tokenSource = self.getTokenStream().tokenSource
|
||||
if isinstance( tokenSource, Lexer ):
|
||||
lexer = tokenSource
|
||||
if lexer is None:
|
||||
|
|
|
@ -220,8 +220,7 @@ class BufferedTokenStream(TokenStream):
|
|||
self.tokens = []
|
||||
self.index = -1
|
||||
|
||||
def getTokenSource(self):
|
||||
return self.tokenSource
|
||||
|
||||
|
||||
# Given a starting index, return the index of the next token on channel.
|
||||
# Return i if tokens[i] is on channel. Return -1 if there are no tokens
|
||||
|
|
|
@ -287,7 +287,7 @@ class Parser (Recognizer):
|
|||
def compileParseTreePattern(self, pattern:str, patternRuleIndex:int, lexer:Lexer = None):
|
||||
if lexer is None:
|
||||
if self.getTokenStream() is not None:
|
||||
tokenSource = self.getTokenStream().getTokenSource()
|
||||
tokenSource = self.getTokenStream().tokenSource
|
||||
if isinstance( tokenSource, Lexer ):
|
||||
lexer = tokenSource
|
||||
if lexer is None:
|
||||
|
|
Loading…
Reference in New Issue