示例#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)
 {
 }