Exemple #1
0
 public override void StepOut()
 {
     if (CurrentStackFrame != null)
     {
         CurrentStackFrame.AsyncStepOut();
     }
 }
Exemple #2
0
 public override bool SetInstructionPointer(string filename, int line, int column, bool dryRun)
 {
     if (CurrentStackFrame != null)
     {
         if (CurrentStackFrame.SetIP(filename, line, column, dryRun))
         {
             WindowsDebugger.RefreshPads();
             JumpToCurrentLine();
         }
     }
     return(false);
 }