如何让eclipse插件监听新编译的项目?
每当您在 eclipse 上按 CRTL+S 时,它都会自动编译该项目。我想知道你们是否知道如何让插件监听任何编译更改。编译器或 IDE 究竟如何触发新编译单元的 AST 树解析?任何想法都将不胜感激。
Whenever you hit CRTL+S on eclipse it automatically compiles the project. I was wondering if you guys have any idea on how I can make a plugin listen to any compilation change. How exactly the compiler or the IDE could trigger the parsing of an AST tree for new compilation unit? Any idea is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Eclipse 中的构建过程由 Builders 处理。
在这篇文章中,有一些注释解释了如何与后台自动交互建造
the building process in Eclipse is handled by Builders.
In this article there are some notes explaining how ti interact with background auto-build