Mono.Debugger.Backend.SingleSteppingEngine.OperationMonoTrampoline.DoExecute C# (CSharp) Method

DoExecute() protected method

protected DoExecute ( ) : void
return void
            protected override void DoExecute()
            {
                if (sse.MonoDebuggerInfo.HasNewTrampolineNotification) {
                sse.enable_extended_notification (NotificationType.Trampoline);
                sse.do_continue (CallSite.Address + CallSite.InstructionSize);
                } else {
                sse.enable_extended_notification (NotificationType.OldTrampoline);
                sse.do_continue ();
                }
            }