forked from jasder/antlr
Merge branch 'master_upstream'
This commit is contained in:
commit
4dd4a676a9
|
@ -10,7 +10,8 @@ from antlr4.atn.ATNDeserializer import ATNDeserializer
|
||||||
from antlr4.atn.ATNDeserializationOptions import ATNDeserializationOptions
|
from antlr4.atn.ATNDeserializationOptions import ATNDeserializationOptions
|
||||||
from antlr4.error.Errors import UnsupportedOperationException
|
from antlr4.error.Errors import UnsupportedOperationException
|
||||||
from antlr4.tree.ParseTreePatternMatcher import ParseTreePatternMatcher
|
from antlr4.tree.ParseTreePatternMatcher import ParseTreePatternMatcher
|
||||||
from antlr4.tree.Tree import ParseTreeListener
|
from antlr4.tree.Tree import ParseTreeListener, ErrorNode, TerminalNode
|
||||||
|
|
||||||
|
|
||||||
class TraceListener(ParseTreeListener):
|
class TraceListener(ParseTreeListener):
|
||||||
|
|
||||||
|
|
|
@ -5,9 +5,7 @@
|
||||||
#/
|
#/
|
||||||
from io import StringIO
|
from io import StringIO
|
||||||
from antlr4.RuleContext import RuleContext
|
from antlr4.RuleContext import RuleContext
|
||||||
from antlr4.atn.ATN import ATN
|
from antlr4.error.Errors import IllegalStateException
|
||||||
from antlr4.atn.ATNState import ATNState
|
|
||||||
|
|
||||||
|
|
||||||
class PredictionContext(object):
|
class PredictionContext(object):
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
# can be found in the LICENSE.txt file in the project root.
|
# can be found in the LICENSE.txt file in the project root.
|
||||||
#/
|
#/
|
||||||
from io import StringIO
|
from io import StringIO
|
||||||
|
|
||||||
|
from antlr4.error.Errors import IllegalStateException
|
||||||
|
|
||||||
from antlr4.RuleContext import RuleContext
|
from antlr4.RuleContext import RuleContext
|
||||||
from antlr4.atn.ATN import ATN
|
from antlr4.atn.ATN import ATN
|
||||||
from antlr4.atn.ATNState import ATNState
|
from antlr4.atn.ATNState import ATNState
|
||||||
|
|
Loading…
Reference in New Issue