java_cup.runtime
public class DefaultSymbolFactory extends Object implements SymbolFactory
Version: last updated 27-03-2006
Constructor Summary | |
---|---|
DefaultSymbolFactory()
DefaultSymbolFactory for CUP.
|
Method Summary | |
---|---|
Symbol | newSymbol(String name, int id, Symbol left, Symbol right, Object value) |
Symbol | newSymbol(String name, int id, Symbol left, Symbol right) |
Symbol | newSymbol(String name, int id, int left, int right, Object value) |
Symbol | newSymbol(String name, int id, int left, int right) |
Symbol | newSymbol(String name, int id) |
Symbol | newSymbol(String name, int id, Object value) |
Symbol | startSymbol(String name, int id, int state) |
Deprecated: as of CUP v11a replaced by the new java_cup.runtime.ComplexSymbolFactory
DefaultSymbolFactory for CUP. Users are strongly encoraged to use ComplexSymbolFactory instead, since it offers more detailed information about Symbols in source code. Yet since migrating has always been a critical process, You have the chance of still using the oldstyle Symbols.