YieldToPendingContinuation() public method

public YieldToPendingContinuation ( ) : int
return int
Esempio n. 1
0
        public override int Run(InterpretedFrame frame)
        {
            frame.PopPendingContinuation();

            // jump to goto target or to the next finally:
            return(frame.YieldToPendingContinuation());
        }
Esempio n. 2
0
        public override int Run(InterpretedFrame frame) {
            frame.PopPendingContinuation();

            // jump to goto target or to the next finally:
            return frame.YieldToPendingContinuation();
        }