是否有任何使用 JavaCC 的 Eclipse 语言 IDE(插件)?
我正在使用 JavaCC 为 Eclipse 创建语言插件,我想知道 Eclipse 是否有任何稳定的语言 IDE 使用 JavaCC 创建其 AST 表示和 Lexer/Parser 文件。谢谢。
I'm using JavaCC to create a language plugin for Eclipse and I wanted to know if there are any stable language IDEs for Eclipse that use JavaCC to create their AST representations and Lexer/Parser files. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不知道有什么稳定的,但是 Eclipse IMP 项目 支持使用任何解析器创建 IDE发电机。遗憾的是,该项目似乎并不是特别活跃(最后一个版本已经发布了将近一年),而且文档也有点稀缺。
然而,它有一个半工作示例(用 LPG 包装),我相信它也可以适用于 JavaCC。
I don't know of any stable ones, however, the Eclipse IMP project supports creating IDE using any parser generator. Sadly, the project does not seem especially active (the last release is almost a year old), and documentation is a bit scarce.
However, it features a half-working example (crated with LPG), that I believe it could be adapted for JavaCC as well.
我尝试在 Google 上搜索
“import org.eclipse”“import org.javacc”,
希望找到一个网页,其中包含来自某个包含这两个插件的插件的 .java 文件的文本。没有结果。尽管如此,很可能存在一个使用 JavaCC 的插件,但将依赖于 JavaCC 的代码与依赖于 Eclipse 的代码完全隔离。唔。
I tried a Google search for
"import org.eclipse" "import org.javacc"
hoping to find a web page with the text of a .java file from some plugin that included both. No results came up. Nonetheless there may well be a plugin that uses JavaCC, but completely segregates the code that depends on JavaCC from code that depends on Eclipse. Hmm.