chore(docs): mark static properties as properties Closes #962

This commit is contained in:
perry 2017-01-11 11:28:18 -06:00
parent e902856089
commit 1134ac96b6

View File

@ -5,6 +5,15 @@ module.exports = function collectInputsOutputs() {
$process: function(docs) { $process: function(docs) {
docs.forEach(function(doc) { docs.forEach(function(doc) {
if (doc.statics && doc.statics.length) {
for (var i in doc.statics) {
// identify properties to differentiate from statics
if (typeof doc.statics[i].parameters == 'undefined') {
doc.statics[i].isProperty = true;
}
}
}
if (doc.members && doc.members.length) { if (doc.members && doc.members.length) {
var members = []; var members = [];
var inputs = []; var inputs = [];