/wiki/TagField.wiki
http://jsdoc-toolkit.googlecode.com/ · Unknown · 28 lines · 18 code · 10 blank · 0 comment · 0 complexity · 7796daab884225d164bfdc5ab1e28b2c MD5 · raw file
- #summary @field
- == The @field Tag ==
- The `@field` tag allows you to force !JsDoc Toolkit to document an object as if it were a non-function, even though it may not appear to be one to the parser.
- === Syntax ===
- {{{
- @field
- }}}
- === Example ===
- {{{
- /**
- * @field
- */
- var pages = function(){
- }
- }}}
- Without the `@field` tag, the `pages` object would be documented as function.
- === See Also ===
- * The [TagFunction @function] tag.