/wiki/TagIgnore.wiki
http://jsdoc-toolkit.googlecode.com/ · Unknown · 26 lines · 19 code · 7 blank · 0 comment · 0 complexity · 00a0591a5ee5d775a66e2efaf5b9e2c2 MD5 · raw file
- #summary @ignore
- == The @ignore Tag ==
- The `@ignore` tag tells !JsDoc Toolkit to exclude an object in your code from the documentation, when it otherwise would be documented. This tag tags precedence over any other mechanism, and guarantess that an ignored ogject will not be documented.
- === Syntax ===
- {{{
- @ignore
- }}}
- === Example ===
- {{{
- /**
- * @constructor
- * @ignore
- */
- function Foo() {
- this.bar = function() {
- }
- }
- }}}
- Note that in this example, both `Foo` and `bar` will be excluded from the documentation; when a parent object is ignored, all of its members are also ignored.