JTB(1) | General Commands Manual | JTB(1) |
jtb - syntax tree builder for JavaCC
jtb [options] inputfile
This manual page documents briefly the jtb command.
JTB (Java Tree Builder) is a syntax tree builder and visitors generator to be used in front of JavaCC (Java Compiler Compiler). It takes a JavaCC grammar file as input (usually a ".jtb" file) and automatically generates the following:
- a set of syntax tree classes based on the productions in the grammar, utilizing the Visitor design pattern;
- four interfaces: IVoidVisitor, IVoidArguVisitor, IRetVisitor, IRetArguVisitor;
- four depth-first visitors: DepthFirstVoidVisitor, DepthFirstVoidArguVisitor, DepthFirstRetVisitor, DepthFirstREtArguVisitor, whose default methods simply visit the children of the current node; a JavaCC grammar ".jj" file (jtb.out.jj by default), with the proper annotations to build the syntax tree during parsing (which then must be compiled with JavaCC).
New visitors, which subclass any generated one, can then override the default methods and perform various operations on and manipulate the generated syntax tree.
javacc(1)
jtb was written by the UCLA Compilers Group.
This manual page was written by David Paleino <dapal@debian.org>, for the Debian project (and may be used by others).
This manual page was updated by Ludovico Cavedon <cavedon@debian.org>.
Jun 2010 |