var _gpfDefClassAttrClassAddmemberToPrototype = _GpfClassDefinition.prototype._addMemberToPrototype,
_gpfDefClassAttrClassBuildPrototype = _GpfClassDefinition.prototype._buildPrototype;
function _gpfDefClassAttrBuild (member, attribute, newPrototype) {
var attributeEntityDefinition = _gpfDefineClassImport(attribute.constructor);
if (!attributeEntityDefinition._singleton) {
attribute._memberName = member;
attribute._ClassConstructor = newPrototype.constructor;
attribute._build(member, this, newPrototype);
Object.assign(_GpfClassDefinition.prototype, {
_addAttributesFor: function (memberName, attributes) {
this._attributes[memberName] = attributes;
_addMemberToPrototype: function (newPrototype, memberName, value) {
var attributeName = _gpfDefClassAttrIsAttributeSpecification(memberName);
_gpfDefClassAttrClassAddmemberToPrototype.call(this, newPrototype, memberName, value);
_buildPrototype: function (newPrototype) {
_gpfDefClassAttrClassBuildPrototype.call(this, newPrototype);
this._forOwnAttributes(_gpfDefClassAttrBuild, newPrototype);