我已经下载了ANTLRDT,但由于某种原因,它没有显示在我的日食上。 我的Eclipse版本是Eclipse 2018-09。有谁知道如何解决这个问题?
任何 Eclipse 插件的正确安装都可以通过转到Help
→About
→Installed Software
来验证
。AntlrDT
首选项页面位于Window
→Preferences
→Certiv Tools
→AntlrDT
。
典型的源/语法布局:
<workspace root>
<project root>
/snippets.test/
/some.txt // the source text file to parse
/src/main/java/
/my/package/path/
/parser/
MyParser.g4
MyLexer.g4
/gen/
对应的语法标头块:
@header {
package my.package.path.parser.gen ;
}
更新:
<workspace root>
<testgrammar>
/snippets.test/
/hello.txt // the source text file to parse
/src/
/build/
/parser/
Hello.g4
/gen/
在Hello.g4
中添加此语法标头块:
@header {
package build.parser.gen ;
}