java_cup
public class lalr_transition extends Object
Version: last updated: 11/25/95
See Also: lalr_state
| Field Summary | |
|---|---|
| protected lalr_transition | _next Next transition in linked list of transitions out of a state |
| protected symbol | _on_symbol The symbol we make the transition on. |
| protected lalr_state | _to_state The state we transition to. |
| Constructor Summary | |
|---|---|
| lalr_transition(symbol on_sym, lalr_state to_st, lalr_transition nxt) Full constructor. | |
| lalr_transition(symbol on_sym, lalr_state to_st) Constructor with null next. | |
| Method Summary | |
|---|---|
| lalr_transition | next() Next transition in linked list of transitions out of a state |
| symbol | on_symbol() The symbol we make the transition on. |
| String | toString() Convert to a string. |
| lalr_state | to_state() The state we transition to. |
Parameters: on_sym symbol we are transitioning on. to_st state we transition to. nxt next transition in linked list.
Parameters: on_sym symbol we are transitioning on. to_st state we transition to.