Home | History | Annotate | Download | only in java_cup

Lines Matching defs:transitions

9  *  A state consists of an LALR item set and a set of transitions to other 
138 /** List of transitions out of this state. */
141 /** List of transitions out of this state. */
142 public lalr_transition transitions() {return _transitions;}
237 * it attempts to extend the machine by creating transitions out of
432 * are indexed by terminal symbols and correspond to either transitions
436 * reduce-goto table is indexed by non terminals and represents transitions
511 for (lalr_transition trans=transitions(); trans!=null; trans=trans.next())
738 /* do the transitions */
739 for (tr = transitions(); tr != null; tr = tr.next())