Beispiel #1
0
 // Cannot add transitions to a final state
 public void addTransition(ICharacterMatch match, IState state)
 {
     throw new NotImplementedException();
 }
Beispiel #2
0
 public void addTransition(ICharacterMatch match, IState state)
 {
     _transitions.Add(match, state);
 }