Home | History | Annotate | Download | only in java_cup

Lines Matching refs:symbol

4  * both terminals and non-terminals).  Each symbol has a name string, and
5 * a string giving the type of object that the symbol will be represented by
6 * on the runtime parse stack. In addition, each symbol maintains a use count
16 public abstract class symbol {
22 * @param nm the name of the symbol.
25 public symbol(String nm, String tp)
40 * @param nm the name of the symbol.
42 public symbol(String nm)
51 /** String for the human readable name of the symbol. */
54 /** String for the human readable name of the symbol. */
59 /** String for the type of object used for the symbol on the parse stack. */
62 /** String for the type of object used for the symbol on the parse stack. */
67 /** Count of how many times the symbol appears in productions. */
70 /** Count of how many times the symbol appears in productions. */
78 /** Index of this symbol (terminal or non terminal) in the parse tables.
84 /** Index of this symbol (terminal or non terminal) in the parse tables.