Home | History | Annotate | Download | only in java_cup

Lines Matching refs:symbol

3 /** This class represents a part of a production which is a symbol (terminal
4 * or non terminal). This simply maintains a reference to the symbol in
18 * @param sym the symbol that this part is made up of.
21 public symbol_part(symbol sym, String lab) throws internal_error
27 "Attempt to construct a symbol_part with a null symbol");
34 * @param sym the symbol that this part is made up of.
36 public symbol_part(symbol sym) throws internal_error
45 /** The symbol that this part is made up of. */
46 protected symbol _the_symbol;
48 /** The symbol that this part is made up of. */
49 public symbol the_symbol() {return _the_symbol;}
95 return super.toString() + "$$MISSING-SYMBOL$$";