Beispiel #1
0
 /// <summary>
 /// Continue execution.
 /// </summary>
 public void Continue()
 {
     Log.Info("Continue");
     DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_Continue);
     IsDebuggingCommandReady = false;
 }
 public ProcessAsyncOperation Execute(ExecutionCommand command, OperationConsole console)
 {
     return(DebuggingService.GetExecutionHandler().Execute(command, console));
 }
Beispiel #3
0
 /// <summary>
 /// Step out of block.
 /// </summary>
 public void StepOut()
 {
     Log.Info("StepOut");
     DebuggingService.SetDebuggerResumeAction(DebugEngineConstants.Debugger_StepOut);
     IsDebuggingCommandReady = false;
 }
 public void NotifyVariableChanged()
 {
     DebuggingService.NotifyVariableChanged();
 }