javacc
Parser generator for use with Java
Install
- All systems
-
curl cmd.cat/javacc.sh
- Debian
-
apt-get install javacc
- Ubuntu
-
apt-get install javacc
- Kali Linux
-
apt-get install javacc
- CentOS
-
yum install javacc
- Fedora
-
dnf install javacc
- Windows (WSL2)
-
sudo apt-get update
sudo apt-get install javacc
- Raspbian
-
apt-get install javacc
- Dockerfile
- dockerfile.run/javacc
javacc
Parser generator for use with Java
Java Compiler-Compiler (JavaCC) is (according to sun) "the most popular parser generator" for use with Java [tm] applications. A parser generator is a tool that reads a grammar specification and converts it to a Java program that can recognize matches to the grammar. In addition to the parser generator itself, JavaCC provides other standard capabilities related to parser generation such as tree building (via a tool called JJTree included with JavaCC), actions, debugging, etc.