yacc {code} 位于中间是什么意思?

发布于 2024-10-21 18:00:40 字数 152 浏览 0 评论 0原文

extdefs:
    {$<ttype>$ = NULL_TREE; } extdef
    | extdefs {$<ttype>$ = NULL_TREE; } extdef
    ;

为什么它在中间?

extdefs:
    {
lt;ttype>$ = NULL_TREE; } extdef
    | extdefs {
lt;ttype>$ = NULL_TREE; } extdef
    ;

Why is it in the middle?

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

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

发布评论

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

评论(1

清秋悲枫 2024-10-28 18:00:40

它可能无处不在。有时在标记之间完成某些操作很有用,尤其是在这种表达式中。

yacc实用程序的标准描述中据说:

操作可以发生在规则中的任何位置
(不只是在最后);一个动作可以
访问操作返回的值
它的左边,依次是它的值
可以通过以下操作访问回报
这是对的。出现在的动作
规则的中间应是等效的
将动作替换为新动作
非终结符并添加
带有非终结符的空规则
符号位于左侧。这
与相关的语义动作
新规则应等同于
原始动作。动作的使用
规则内可能会引起冲突
否则就不会存在。

It could be everywhere. Sometimes it's useful to have something done in between the tokens, especially in this kind of or expressions.

In the standard description of the yacc utility it's said that:

Actions can occur anywhere in a rule
(not just at the end); an action can
access values returned by actions to
its left, and in turn the value it
returns can be accessed by actions to
its right. An action appearing in the
middle of a rule shall be equivalent
to replacing the action with a new
non-terminal symbol and adding an
empty rule with that non-terminal
symbol on the left-hand side. The
semantic action associated with the
new rule shall be equivalent to the
original action. The use of actions
within rules might introduce conflicts
that would not otherwise exist.

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