Exemplo n.º 1
0
 public static TypeLink IsArgOf(this FuzzyType first, FuzzyMethodBinding second, int argIndex)
 {
     return first.IsIdenticalTo(second.Args[argIndex]);
 }
Exemplo n.º 2
0
 public static TypeLink IsRetValOf(this FuzzyType first, FuzzyMethodBinding second)
 {
     return first.IsIdenticalTo(second.ReturnValue);
 }
Exemplo n.º 3
0
 public static TypeLink IsTargetOf(this FuzzyType first, FuzzyMethodBinding second)
 {
     return first.IsIdenticalTo(second.Target);
 }