Skip to content

Commit

Permalink
Adding the build hoook (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnaudBuchholz committed Aug 28, 2018
1 parent a2dd968 commit 549ebd9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/attributes/attribute.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@ var _gpfAttribute = _gpfDefine({
*/
_check: function (member, classDefinition) {
_gpfIgnore(member, classDefinition);
},

/**
* Build the class according to the attribute usage
* **NOTE**: Experimental feature, do not rely on this method
*
* @param {String} member Member name or empty if global to the class
* @param {_GpfClassDefinition} classDefinition Class definition
* @param {Object} classPrototype Class prototype being built
* @private
*/
_build: function (member, classDefinition, classPrototype) {
_gpfIgnore(member, classDefinition);
}

});

0 comments on commit 549ebd9

Please sign in to comment.