ANTLRWorks 标准树
在 ANTLRWorks 中调试语法时,ANTLRWorks 构建了一个漂亮的树,没有任何“^”、“!”规则内的运算符。是否可以在不添加“^”、“!”的情况下访问这棵树?运算符到语法源?
When debugging grammar in ANTLRWorks, ANTLRWorks builds a nice tree without any "^", "!" operators inside rules. Is it possible to access this tree whithout adding "^", "!" operators to grammar source?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于您没有定义
^
和!
运算符(或重写规则),因此您必须指的是解析树(而不是 AST)。但是,答案是:不,这是不可能的。它们是在 ANTLRWorks 内部创建的,没有(公共)API 来访问此结构。Since you didn't define
^
and!
operators (or rewrite rules), you must mean the parse tree (not the AST). But, the answer is: no, that's not possible. They are created internally in ANTLRWorks, there's no (public) API to access this structure.