Beispiel #1
0
        public override CallInfo Clone(IEnumerable <ResolvedCallee> possibleCallees)
        {
            var result = new MethodCallInfo(this, possibleCallees);

            return(result);
        }
Beispiel #2
0
 public MethodCallInfo(MethodCallInfo other, IEnumerable <ResolvedCallee> possibleCallees)
     : base(other, possibleCallees)
 {
     this.Method = other.Method;
 }