-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse literal functions & properties (including @lends) #85
Conversation
what is @Lends ? |
From http://code.google.com/p/jsdoc-toolkit/wiki/TagLends: The @Lends tag allows you to document all the members of an anonymous object literal as if they were members of an object with the given name.
I found this to be a useful way of documenting anonymous literals, particularly with .extends() style constructors. Feel free to merge or not, or critique, we here at @Livefyre just needed the functionality and we thought we'd share it. |
👍 |
1 similar comment
+1 |
…media-master Conflicts: test/dox.test.js
👍 |
Closing this PR, since it has long since become un-mergable. @genehallman if this is still something you think dox needs, could you please create a new PR based on the current master? |
Implemented literal function and property parsing, including the @Lends tag.
Specifically useful for documenting literals, .extends and similar kinds of object construction techniques.
Tests included.