private bool IsPortable(MethodCall call)
 {
     return _repository.Any(
         x =>
             call.ReferencedMethod.Equals(x.GetMember()) &&
             (this.SupportedPlatforms & x.SupportedPlatforms) == this.SupportedPlatforms)
         || IsInlineEnumerator(call.ReferencedMethod);
 }
Beispiel #2
0
 public CallInfo(MethodCall methodCall)
 {
     this.Caller = methodCall.CallingMethod.ToString();
     this.Reference = methodCall.ReferencedMethod.ToString();
 }