| java.lang.Object java_cup.parse_reduce_table
parse_reduce_table | public class parse_reduce_table (Code) | | This class represents the complete "reduce-goto" table of the parser.
It has one row for each state in the parse machines, and a column for
each terminal symbol. Each entry contains a state number to shift to
as the last step of a reduce.
See Also: java_cup.parse_reduce_row version: last updated: 11/25/95 author: Scott Hudson |
Method Summary | |
public int | num_states() How many rows/states in the machine/table. | public String | toString() Convert to a string. |
_num_states | protected int _num_states(Code) | | How many rows/states in the machine/table.
|
parse_reduce_table | public parse_reduce_table()(Code) | | Simple constructor. Note: all terminals, non-terminals, and productions
must already have been entered, and the viable prefix recognizer should
have been constructed before this is called.
|
num_states | public int num_states()(Code) | | How many rows/states in the machine/table.
|
|
|