/**
* @class Foo
*/
function Foo() {
Object.defineProperties(this, {
/**
* @memberof Foo#
* @type {Object}
*/
prototype: {
value: Object.prototype,
enumerable: true,
writable: true
}
});
}