Home | History | Annotate | Download | only in java_cup

Lines Matching defs:lalr_state

52 public class lalr_state {
60 public lalr_state(lalr_item_set itms) throws internal_error
113 public static lalr_state find_state(lalr_item_set itms)
118 return (lalr_state)_all.get(itms);
159 protected static void dump_state(lalr_state st) throws internal_error
167 System.out.println("NULL lalr_state");
171 System.out.println("lalr_state [" + st.index() + "] {");
209 ((lalr_state)st.nextElement()).propagate_lookaheads();
221 public void add_transition(symbol on_sym, lalr_state to_st)
268 * @see java_cup.lalr_state#propagate_all_lookaheads
271 public static lalr_state build_machine(production start_prod)
274 lalr_state start_state;
280 lalr_state st, new_st;
304 start_state = new lalr_state(start_items);
314 st = (lalr_state)work_stack.pop();
358 new_st = (lalr_state)_all_kernels.get(kernel);
367 new_st = new lalr_state(new_items);
701 public boolean equals(lalr_state other)
712 if (!(other instanceof lalr_state))
715 return equals((lalr_state)other);
736 result = "lalr_state [" + index() + "]: " + _items + "\n";