| java.lang.Object java_cup.runtime.DefaultSymbolFactory
DefaultSymbolFactory | public class DefaultSymbolFactory implements SymbolFactory(Code) | | Default Implementation for SymbolFactory, creates
plain old Symbols
version: last updated 27-03-2006 author: Michael Petter |
Method Summary | |
public Symbol | newSymbol(String name, int id, Symbol left, Symbol right, Object value) | public Symbol | newSymbol(String name, int id, Symbol left, Symbol right) | public Symbol | newSymbol(String name, int id, int left, int right, Object value) | public Symbol | newSymbol(String name, int id, int left, int right) | public Symbol | newSymbol(String name, int id) | public Symbol | newSymbol(String name, int id, Object value) | public Symbol | startSymbol(String name, int id, int state) |
DefaultSymbolFactory | public DefaultSymbolFactory()(Code) | | 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.
|
|
|