cecco974 / jsdoc-toolkit

Automatically exported from code.google.com/p/jsdoc-toolkit
0 stars 0 forks source link

"Overwriting symbol documentation" despite different @memberOf #148

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Trying to document A.X and B.x via @name tags (see attached file) generates
the following warnings:

>> WARNING: The symbol 'x' is documented more than once.
>> WARNING: Overwriting symbol documentation for: x.
2 warnings.

And, which is the actual issue, A.x does not appear anywhere in the
generated documentation.

I'm using version 2.0.

Original issue reported on code.google.com by Viktor.P...@open-xchange.org on 3 Jun 2008 at 12:13

Attachments:

GoogleCodeExporter commented 8 years ago
@memberOf of isn't required in your example, but you must provide the full 
namepath to @name.
See http://www.jsdoctoolkit.org/wiki/?page=name for more information.

/**
 * @namespace
 * @name A
 */

/**
 * @namespace
 * @name B
 */

/**
 * @name A.x
 */

/**
 * @name B.x
 */

Original comment by micmath on 3 Jun 2008 at 8:50