Esempio n. 1
0
 private static TypeDefinition GetNewTypeContext(TypeDefinition typeContext, TypeDefinition definition)
 {
     if (typeContext == null)
     {
         typeContext = definition;
     }
     else
     {
         if (!definition.IsBaseTypeOf(typeContext))
         {
             typeContext = definition;
         }
     }
     return typeContext;
 }
Esempio n. 2
0
 private bool TryInheritancePrune(string fullName, int depth, List<string> breadCrumbs, bool inVirtual, TypeDefinition definition, TypeDefinition inheritedTypeContext)
 {
     if (inVirtual && !definition.IsBaseTypeOf(inheritedTypeContext)) { 
         WriteWalkerDebug("Can't reach here with inheritance", depth);
         breadCrumbs.Remove(fullName);
         return true;
     }
     return false;
 }