Exemplo n.º 1
0
        public override void Step(CInterpreter state, ExecutionFrame frame)
        {
            var a = Action;

            if (a != null)
            {
                a(state);
            }
            if (state.YieldedValue == 0)
            {
                state.Return();
            }
        }
Exemplo n.º 2
0
 public abstract void Step(CInterpreter state, ExecutionFrame frame);