Skip to content

Commit

Permalink
analyzer: include constructor params in class information
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal committed Feb 9, 2015
1 parent babf8fa commit e7477a2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions lib/analyze.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,7 @@ module.exports = function(ast, argv) {
klass.description = tag.description;
klass.members = tag.properties || [];
klass.members.forEach(setPipedTypesString);
klass.params = tag.params || [];
result.classes.push(klass);
if (currentModule) {
currentModule.classes.push(klass);
Expand Down

0 comments on commit e7477a2

Please sign in to comment.