如何使用 Groovy AST 转换添加警告?

发布于 2024-10-08 16:58:46 字数 308 浏览 2 评论 0原文

我在 SourceUnit 对象上看到可以 addError(SyntaxException),但如何添加警告?

编辑:任何人都知道我如何在 CompilePhase.SEMANTIC_ANALYSIS 中获取 CSTNode,或者如何只需知道行号和列号即可简单地添加警告(就像 addError 函数的工作原理一样)?

编辑2:我尝试自己创建一个CSTNode,但它似乎不起作用,因为eclipse没有显示警告。

I see on the SourceUnit object that I can addError(SyntaxException), but how do I add a warning?

EDIT: Anyone know how I can either get a CSTNode in the CompilePhase.SEMANTIC_ANALYSIS, or how I can simply add a warning with only having to know the line number and column number (just like the addError function works)?

EDIT 2: I tried just creating a CSTNode myself, but it didn't seem to work as eclipse didn't show the warning.

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

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

发布评论

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

评论(1

断爱 2024-10-15 16:58:46

您可以在 SourceUnit 上调用 getErrorCollector(),然后使用 addWarning(...) 方法之一向其中添加警告吗?

Can you call getErrorCollector() on SourceUnit then add the warnings to that with one of the addWarning(...) methods?

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