// This is technically not a constructor method, but it is meant to
 // be used to set up the object
 internal void resolveReferences(MetaDataLoader loader)
 {
     this.owner      = loader.getGenericParam(this.ownerIndex);
     this.constraint = loader.getTypeDefOrRef(this.constraintIndex);
     this.owner.AddGenericParamConstraint(this.constraint);
 }