Beispiel #1
0
        public void UpdateBreakpointLine(Breakpoint bp, int newLine)
        {
            if (IsReadOnly)
            {
                return;
            }

            bp.SetLine(newLine);
            NotifyBreakEventChanged(bp);
        }
		void SaveBreakpoint (Breakpoint bp)
		{
			bp.SetColumn (breakpointLocation.Column);
			bp.SetLine (breakpointLocation.Line);
		}
Beispiel #3
0
 public void UpdateBreakpointLine(Breakpoint bp, int newLine)
 {
     Remove(bp);
     bp.SetLine(newLine);
     Add(bp);
 }