Uses of Class
java_cup.lalr_state
-
Packages that use lalr_state Package Description java_cup -
-
Uses of lalr_state in java_cup
Fields in java_cup declared as lalr_state Modifier and Type Field Description protected lalr_stateshift_action. _shift_toThe state we shift to.protected lalr_statelalr_transition. _to_stateThe state we transition to.protected static lalr_stateMain. start_stateStart state in the overall state machine.lalr_state[]parse_reduce_row. under_non_termActual entries for the row.Methods in java_cup that return lalr_state Modifier and Type Method Description static lalr_statelalr_state. build_machine(production start_prod)Build an LALR viable prefix recognition machine given a start production.static lalr_statelalr_state. find_state(lalr_item_set itms)Find and return state with a given a kernel item set (or null if not found).lalr_stateshift_action. shift_to()The state we shift to.lalr_statelalr_transition. to_state()The state we transition to.Methods in java_cup with parameters of type lalr_state Modifier and Type Method Description voidlalr_state. add_transition(symbol on_sym, lalr_state to_st)Add a transition out of this state to another.protected static voidlalr_state. dump_state(lalr_state st)Helper routine for debugging -- produces a dump of the given state onto System.out.booleanlalr_state. equals(lalr_state other)Equality comparison.Constructors in java_cup with parameters of type lalr_state Constructor Description lalr_transition(symbol on_sym, lalr_state to_st)Constructor with null next.lalr_transition(symbol on_sym, lalr_state to_st, lalr_transition nxt)Full constructor.shift_action(lalr_state shft_to)Simple constructor.
-