我一直在尝试为我一直在设计的一种语言制定基本框架,并且我正在尝试使用Parsimonious为我进行解析。截至目前,我已经声明了以下语法:
grammar = Grammar(
"""
program = expr*
expr = _ "{" lvalue (rvalue / expr)* "}" _
lvalue = _ ~"[a-z0-9\\-]+" _
rvalue = _ ~".+" _
_ = ~"[\\n\\s]*"
"""
)
当我尝试输出一个简单输入字符串的结果 AST 时,例如"{ do-something some-argument }"
:
print(grammar.parse("{ do-something some-argument }"))
Parsimonious 决定彻底拒绝它,然后给了我这个有点神秘的错误:
Traceback (most recent call last): File "tests.py", line 13, in <module> print(grammar.parse("{ do-something some-argument }")) File "/usr/local/lib/python2.7/dist-packages/parsimonious/grammar.py", line 112, in parse return self.default_rule.parse(text, pos=pos) File "/usr/local/lib/python2.7/dist-packages/parsimonious/expressions.py", line 109, in parse raise IncompleteParseError(text, node.end, self) parsimonious.exceptions.IncompleteParseError: Rule 'program' matched in its entirety, but it didn't consume all the text. The non-matching portion of the text begins with '{ do-something some-' (line 1, column 1).
起初我认为这可能是与我的空格规则有关的问题_
,但是在尝试在某些地方删除空格规则失败后,我仍然遇到了同样的错误。
我尝试过在线搜索,但我发现似乎与远程相关的只是这个问题,它对我没有任何帮助。
我的语法有问题吗?我没有以正确的方式解析输入吗?如果有人对此有可能的解决方案,将不胜感激。