internal void StepOver()
 {
     if (_activeEvaluator != null)
     {
         _activeEvaluator.StepOver();
         CurrentWindow.TextView.VisualElement.Focus();
     }
     else
     {
         NoProcessError();
     }
 }
Esempio n. 2
0
 internal void StepOver()
 {
     if (_activeEvaluator != null)
     {
         _activeEvaluator.StepOver();
         CurrentWindow.TextView.VisualElement.Focus();
     }
     else if (CustomDebugAdapterProtocolExtension.CanUseExperimental())
     {
         _serviceProvider.GetDTE().Debugger.CurrentThread.Parent.StepOver();
         CurrentWindow.TextView.VisualElement.Focus();
     }
     else
     {
         NoProcessError();
     }
 }