如何在 Eclipse 之外的项目中使用 java Eclipse 抽象语法树? (即不是 Eclipse 插件)
如何在 Eclipse 之外的项目中使用 java Eclipse 抽象语法树? (即不是 Eclipse 插件)
我见过的所有 Eclipse AST 示例都是针对 Eclipse 插件的。 有没有一种方法(即示例)将 eclipse AST 用于非 eclipse 项目。
How can I use the java Eclipse Abstract Syntax Tree in a project outside Eclipse? (ie not an eclipse plugin)
All the Eclipse AST examples that I've seen are for eclipse plugins. Is there a way (ie an example) of a project that uses the eclipse AST for a non-eclipse project.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是我在给定 Java 1.5 文件的情况下用于执行此操作的代码。 我对此很陌生,今天花了很多时间浏览并尝试让下面的代码正常工作。
这需要以下库:
Below is the code I used to do this given a Java 1.5 file. I'm very new to this and spent today browsing around, and trying things out to get the code below working.
This requires the following libraries:
根据这篇旧文章,您应该能够调用 AST解析器独立于您的应用程序上下文(无论是否有 Eclipse 插件)。
(来源:ibm.com)
从此bug条目:
3.0中的ASTParser可以是在另一个独立程序中用于创建 Eclipse
AST 无需实际运行 Eclipse。 正如文档所述:
因此 此线程 尝试解析非常短的java源代码:
According to this old article, you should be able to call AST parser independently of your application context (eclipse plugin or not).
(source: ibm.com)
From this bug entry:
ASTParser in 3.0 can be used in another standalone program to create Eclipse
ASTs without actually running Eclipse. As the documentation says:
Hence this thread attempts to parse a very short java source: