Eclipse editor and builder for Antlr4 grammars
Antlr v4 grammar editor and builder for Eclipse
The folders containing the ‘g4’ grammars and the generated files must be on the project classpath, i.e.,
a Java source folder. Otherwise, AntlrDT has no reliable way of finding them.
Key | Function |
---|---|
Ctrl-Space | Open quick assist popup |
Ctrl-/ | Toggle commenting of selected text |
Ctrl-Shift-f | Format full page or selected text |
From the Antlr tools section of the platform toolbar :
[workspace root]
[project]
/src/main/java
/your/package/path
/parser
YourParser.g4
YourLexer.g4
YourTokenFactory.java
YourToken.java
/gen
[[generated files produced here]]
/test.snippets
/basic
[[source snippets]]
/complex
[[source snippets]]
Add the appropriate @header
to the lexer and parser grammars:
@header { package your.package.path.parser.gen; }
After opening the token view, be sure to verify the values in the ‘Integration’ dialog.
Also see, Documentation.
Update site:
EPL v2.0