/// <summary>
        /// Placeholder for future support on debugging command in REPL window
        /// Breakpoint has been updated
        /// </summary>
        /// <param name="e"></param>
        public void UpdateBreakpoint(DebuggerBreakpointUpdatedEventArgs e)
        {
            Log.InfoFormat("Breakpoint updated: {0} {1}", e.UpdateType, e.Breakpoint);

            if (BreakpointUpdated != null)
            {
                BreakpointUpdated(this, e);
            }
        }
 /// <summary>
 /// Placeholder for future support on debugging command in REPL window
 /// Breakpoint has updated
 /// </summary>
 /// <param name="e">DebuggerBreakpointUpdatedEventArgs</param>
 public void BreakpointUpdated(DebuggerBreakpointUpdatedEventArgs e)
 {
     Debugger.BreakpointManager.UpdateBreakpoint(e);
 }
Exemple #3
0
 /// <summary>
 /// Placeholder for future support on debugging command in REPL window
 /// This event handler adds or removes breakpoints monitored by Visual Studio.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void Debugger_BreakpointUpdated(object sender, DebuggerBreakpointUpdatedEventArgs e)
 {
     // TODO: implementaion for future support on debugging command in REPL window
 }