|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava_cup.runtime.Symbol
public class Symbol
Defines the Symbol class, which is used to represent all terminals and nonterminals while parsing. The lexer should pass CUP Symbols and CUP returns a Symbol.
Field Summary | |
---|---|
int |
left
|
int |
parse_state
The parse state to be recorded on the parse stack with this symbol. |
Pos |
pos
The data passed to parser |
int |
right
|
int |
sym
The symbol number of the terminal or non terminal being represented |
java.lang.Object |
value
|
Constructor Summary | |
---|---|
Symbol(int sym_num)
Constructor for no value or l,r |
|
Symbol(int id,
int l,
int r)
Constructor for no value |
|
Symbol(int id,
int l,
int r,
java.lang.Object o)
Constructor for l,r values |
|
Symbol(int id,
Pos pos,
java.lang.Object o)
Constructor for no l,r values |
|
Symbol(int id,
Symbol left,
Symbol right)
|
|
Symbol(int id,
Symbol left,
Symbol right,
java.lang.Object o)
|
Method Summary | |
---|---|
java.lang.String |
toString()
Printing this token out. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public int sym
public int parse_state
public Pos pos
public int left
public int right
public java.lang.Object value
Constructor Detail |
---|
public Symbol(int id, Symbol left, Symbol right, java.lang.Object o)
public Symbol(int id, Symbol left, Symbol right)
public Symbol(int id, int l, int r, java.lang.Object o)
public Symbol(int id, Pos pos, java.lang.Object o)
public Symbol(int id, int l, int r)
public Symbol(int sym_num)
Method Detail |
---|
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |