An IDE for building language recognizers written with ANTLR
git clone https://github.com/hendo9701/ideon.gitcd ideon./gradlew build- Add a system variable named "ANTLR_HOME" and set its value to be the path of your current installed
version of antlr. You can get it here.
- Windows:
set ANTLR_HOME=<PATH TO ANTLR JAR>- Type:
echo %ANTLR_HOME%and you should see the path to the antlr jar
- Linux:
ANTLR_HOME=<<PATH TO ANTLR JAR>>- Type
echo $ANTLR_HOMEand you should see the path to the antlr jar
- Windows:
./gradlew run
- Basic syntax highlighting
- Project tree visualization
- Configurable ANTLR code generation
- Compiler and interpreter generation (Pending)
- Grammar testing via parse tree visualization
- Support for languages other than java can be added via
cssandregex