forked from senchalabs/jsduck
-
Notifications
You must be signed in to change notification settings - Fork 0
@ignore
nene edited this page Mar 21, 2012
·
1 revision
Synopsis:
@ignore
Completely ignores a class or member.
When used on class the whole class together with all its members will be removed from documentation.
When used on member the doc-comment is parsed as usual, but is then thrown away and not added to any class.
Example:
/**
* The actual implementation.
* @ignore
*/
function foo() {
}
return {
/**
* Here are the actual docs for #foo.
*/
foo: function() {
foo.apply(this, arguments);
}
}