yacc {code} 位于中间是什么意思?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它可能无处不在。有时在标记之间完成某些操作很有用,尤其是在这种或表达式中。
在
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: