This commit is contained in:
mterwoord_cp 2009-09-13 12:58:22 +00:00
parent b3fea658b0
commit 2cb5737cf7

View file

@ -381,6 +381,14 @@ namespace Cosmos.IL2CPU {
}
}
}
// Queue Types directly related to method
Queue(aMethod.DeclaringType, aMethod, "Declaring Type");
if (aMethod is System.Reflection.MethodInfo) {
Queue(((System.Reflection.MethodInfo)aMethod).ReturnType, aMethod, "Return Type");
}
foreach (var xParam in aMethod.GetParameters()) {
Queue(xParam.ParameterType, aMethod, "Parameter");
}
}
}