InfoHolder<?> holder = entry.getValue();
MetaInfo metaInfo = holder.getMetaInfo( accessor );
if( metaInfo != null )
{
Class<?> mixinType = entry.getKey();
return metaInfo.withAnnotations( mixinType )
.withAnnotations( accessor )
.withAnnotations( accessor instanceof Method ? ((Method)accessor).getReturnType() : ((Field)accessor).getType() );
}
}
// TODO is this code reached at all??