javacc parseException...前瞻问题?

发布于 2024-07-24 05:52:28 字数 525 浏览 7 评论 0原文

我正在为 javacc 中的一个非常简单的语法编写一个解析器。 它开始融合在一起,但此刻我完全陷入了这个错误:

    ParseException: Encountered "" at line 4, column 15.
Was expecting one of:

有问题的输入行是 z = y + z + 5 ,

而给我带来问题的产生式是我的表达式哪个被调用 varDecl():

<ID> <EQL> expression()

表达式如下所示:

        <VAR> (<PLUS> expression())?| <NUM> (<PLUS> expression())? 
        | call() (<PLUS> expression())?

我不知道为什么会收到此错误 - 任何见解将不胜感激。

I'm writing a parser for a very simple grammar in javacc. It's beginning to come together but at the moment I'm completely stuck on this error:

    ParseException: Encountered "" at line 4, column 15.
Was expecting one of:

The line of input in question is z = y + z + 5

and the production that is giving me problems is my expression which get called from
varDecl():

<ID> <EQL> expression()

Expression looks like this:

        <VAR> (<PLUS> expression())?| <NUM> (<PLUS> expression())? 
        | call() (<PLUS> expression())?

I'm at a loss as to why I'm getting this error - any insight would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

不及他 2024-07-31 05:52:28

嗯,是的,这不是 JavaCC 的一个非常有用的错误。 您使用什么版本的 JavaCC?

另外,在没有看到完整语法的情况下很难解决这些问题......尽管我知道您可能无法发布该内容。

Hm, yes, that's not a very helpful error from JavaCC. What version of JavaCC are you using?

Also, it's difficult to troubleshoot these problems without seeing the full grammar... and although I understand you might not be in a position to post that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文