예제 #1
0
파일: Verifier.cs 프로젝트: killop/ILGPU
 /// <summary>
 /// Performs a verification step for all methods that should be verified.
 /// </summary>
 /// <typeparam name="TPredicate">The collection predicate.</typeparam>
 /// <param name="methods">The methods to verify.</param>
 public virtual void Verify <TPredicate>(MethodCollection <TPredicate> methods)
     where TPredicate : IMethodCollectionPredicate
 {
     foreach (var method in methods)
     {
         Verify(method);
     }
 }
예제 #2
0
파일: Verifier.cs 프로젝트: killop/ILGPU
 /// <summary>
 /// Performs a verification step for all methods that should be verified.
 /// </summary>
 /// <typeparam name="TPredicate">The collection predicate.</typeparam>
 /// <param name="methods">The methods to verify.</param>
 public override void Verify <TPredicate>(MethodCollection <TPredicate> methods)
 {
 }