Example #1
0
 public ReflectionNamespace Produce(string name)
 {
     return(_childNamespaces.Invoke(name));
 }
Example #2
0
 private List <Type> TypeListFor(string name)
 {
     return(_typeLists.Invoke(name));
 }
Example #3
0
 public virtual bool CanBeReachedByPromotion(IType expectedType, IType actualType)
 {
     return(_canBeReachedByPromotion.Invoke(expectedType, actualType));
 }
Example #4
0
 public IArrayType MakeArrayType(int rank)
 {
     return(_arrayTypes.Invoke(rank));
 }
Example #5
0
 public IMethod FindImplicitConversionOperator(IType fromType, IType toType)
 {
     return(_findImplicitConversionOperator.Invoke(fromType, toType));
 }