ANTLR4 Python从字符串而不是路径解析

我正在使用ANTLR4和Python,我目前正在使用以下代码进行解析:

lexer = MyGrammarLexer(FileStream(path))
stream = CommonTokenStream(lexer)
parser = MyGrammarParser(stream)
return parser.start().object

但是,我想将此代码更改为直接从给定字符串而不是给定路径进行解析.从而将第一行改为类似的东西

lexer = MyGrammarLexer(a_given_string)

我该怎么做呢?

解决方法:

看一下Pyhton2Python3运行时的来源,我会说使用InputStream代替:

lexer = MyGrammarLexer(InputStream(a_given_string))
上一篇:如何使用python在ANTLR中执行自定义错误报告?


下一篇:为什么Rhino对这个javascript不满意?