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