java_cup.runtime |
|
Java Source File Name | Type | Comment |
ComplexSymbolFactory.java | Class | |
DefaultSymbolFactory.java | Class | |
lr_parser.java | Class | This class implements a skeleton table driven LR parser. |
Scanner.java | Interface | Defines the Scanner interface, which CUP uses in the default
implementation of lr_parser.scan() . |
Symbol.java | Class | Defines the Symbol class, which is used to represent all terminals
and nonterminals while parsing. |
SymbolFactory.java | Interface | |
virtual_parse_stack.java | Class | This class implements a temporary or "virtual" parse stack that
replaces the top portion of the actual parse stack (the part that
has been changed by some set of operations) while maintaining its
original contents. |