将 return 语句与其他语句分开 ANTRL

发布于 2024-10-27 03:17:07 字数 816 浏览 0 评论 0原文

这是我的语法的一部分。

statement
    :   assignmentStatement
    |       doLoopStatement 
    |   whileStatement
    |   ifStatement
    |   procedureCallStatement
    ;


function 
    : 'FUNCTION' IDENT '(' parameters? ')' ':' type ':=' 
         (variable (';' variable)*)?
        'BEGIN'
            main_body  //body can be empty
            return_Statement 
        'END' IDENT
    ;

其中 main_body 是:

main_body
    : (statement (';' statement)*)?
    ;

现在,在创建 AST 之前,我需要修复 return 语句,

问题是 assignmentStatementreturn_Statement 所以我从解析器收到 LL(*) 错误,因为它不知道该选择什么。

assignmentStatement
    :   IDENT ':=' expression
    ;

return_Statement
    :   IDENT ':=' expression
    ;

有什么想法吗?

here's part from my grammar.

statement
    :   assignmentStatement
    |       doLoopStatement 
    |   whileStatement
    |   ifStatement
    |   procedureCallStatement
    ;


function 
    : 'FUNCTION' IDENT '(' parameters? ')' ':' type ':=' 
         (variable (';' variable)*)?
        'BEGIN'
            main_body  //body can be empty
            return_Statement 
        'END' IDENT
    ;

where main_body is:

main_body
    : (statement (';' statement)*)?
    ;

now, before creating my AST, I need to fix the return statement,

the problem is that the assignmentStatement and return_Statement
and so I'm getting a LL(*) error from the parser, as it does not know what to choose.

assignmentStatement
    :   IDENT ':=' expression
    ;

return_Statement
    :   IDENT ':=' expression
    ;

any ideas?

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

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

发布评论

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

评论(1

愿与i 2024-11-03 03:17:07

如果 assignmentStatement 确实应该与 return_Statement 相同,那么就没有理由同时拥有两者。消除 return_Statement 规则,并在 function 规则中将其替换为 assignmentStatement

If assignmentStatement is really supposed to be identical to return_Statement then there's no reason to have both. Eliminate the return_Statement rule and in your function rule replace it with assignmentStatement.

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