Ejemplo n.º 1
0
 public void Transition(States toState, Token token)
 {
     Current = StateLookup[toState];
     Current.Enter(token, this);
 }
Ejemplo n.º 2
0
 public HtmlStateMachineGizmo()
 {
     Current = StateLookup[States.Begin];
 }