chore(dgeni): re-adding instance methods to docgen

This commit is contained in:
perry
2016-02-11 11:02:33 -06:00
parent 3c5ba4d67e
commit 8314ad25c2

View File

@ -4,14 +4,6 @@ module.exports = function collectInputsOutputs() {
$runBefore: ['rendering-docs'],
$process: function(docs) {
docs.forEach(function(doc) {
// if (doc.members && doc.name == "Searchbar"){
// console.log(doc.exportSymbol.members.hideCancelButton.valueDeclaration.decorators[0].expression.expression);
// doc.members.forEach(function(method){
// if (method.name === "load") {
// console.log(method);
// }
// })
// }
if (doc.members && doc.members.length) {
var members = [];
@ -36,6 +28,8 @@ module.exports = function collectInputsOutputs() {
}
// not an input or output, must be a plain member
members.push(doc.members[i]);
} else {
members.push(doc.members[i]);
};
}