如何处理 ANTLR 中的列表返回值

发布于 2024-07-17 09:29:28 字数 423 浏览 9 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

我只土不豪 2024-07-24 09:29:28

在 C# 中,它可能看起来像这样:

list returns [ List<string> ValueList ]
    @init
    {
        $ValueList = new List<string>();
    }
    : '[]'
    | '[' value {$ValueList.Add(value);} (COMMA value {$ValueList.Add(value);})* ']'
    ;

In C# it might look like this:

list returns [ List<string> ValueList ]
    @init
    {
        $ValueList = new List<string>();
    }
    : '[]'
    | '[' value {$ValueList.Add(value);} (COMMA value {$ValueList.Add(value);})* ']'
    ;
横笛休吹塞上声 2024-07-24 09:29:28

我想一个更直接的方法可能是

list returns [ List values ]
: '[]' 
| '[' vs+=value (COMMA vs+=value)* ']' {
        $values = $vs;
}

I guess a more straightforward way could be

list returns [ List values ]
: '[]' 
| '[' vs+=value (COMMA vs+=value)* ']' {
        $values = $vs;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文