forked from jasder/antlr
Merge pull request #2927 from ericvergnaud/fix-python3-typo
Fix undefined value
This commit is contained in:
commit
69687b96bb
|
@ -158,7 +158,7 @@ class SingletonPredictionContext(PredictionContext):
|
|||
class EmptyPredictionContext(SingletonPredictionContext):
|
||||
|
||||
def __init__(self):
|
||||
super().__init__(None, self.EMPTY_RETURN_STATE)
|
||||
super().__init__(None, PredictionContext.EMPTY_RETURN_STATE)
|
||||
|
||||
def isEmpty(self):
|
||||
return True
|
||||
|
|
Loading…
Reference in New Issue