如何处理 ANTLR 中的列表返回值
在 ANTLR 中解决此问题的正确方法是什么:
我有一个简单的语法规则,例如具有任意数量元素的列表。
list
: '[]'
| '[' value (COMMA value)* ']'
如果我想为列表分配一个返回值,并且该值是生产中返回值的实际列表,那么正确的方法是什么? 我正在考虑的替代方案是:
- 在全局范围内创建我自己的堆栈来跟踪这些列表
- 尝试检查我下面的树节点并
- 以这种方式提取信息 以我希望找到的某种灵活而酷的方式访问它我可以在其中从与规则关联的操作中轻松访问这样的列表。
我想问题是:酷孩子是如何做到的?
(仅供参考,我正在使用 ANTLR 的 python API,但如果你用另一种语言来打我,我可以处理)
What is the correct way to solve this problem in ANTLR:
I have a simple grammar rule, say for a list with an arbitrary number of elements.
list
: '[]'
| '[' value (COMMA value)* ']'
If I wanted to assign a return value for list, and have that value be the actual list of returned values from the production, what is the proper way to do it? The alternatives I'm entertaining are:
- create my own stack in the global scope to keep track of these lists
- Try to inspect the tree nodes below me and extract information that way
- Access it in some slick and cool way that I'm hoping to find out about in which I can get easy access to such a list from within the action associated with the rule.
I guess the question is: How do the cool kids do it?
(FYI I'm using the python API for ANTLR, but if you hit me with another language, I can handle that)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 C# 中,它可能看起来像这样:
In C# it might look like this:
我想一个更直接的方法可能是
I guess a more straightforward way could be