public override CallInfo Clone(IEnumerable <ResolvedCallee> possibleCallees) { var result = new DelegateCallInfo(this, possibleCallees); return(result); }
public DelegateCallInfo(DelegateCallInfo other, IEnumerable <ResolvedCallee> possibleCallees) : base(other, possibleCallees) { this.Delegate = other.Delegate; }