[Jsdoc-user] Reference 'static' members with @link and @see tags
Status: Inactive
Brought to you by:
mmathews
From: Adam R. <ad...@pr...> - 2005-12-01 09:38:26
|
Hi, I seem to have come up against some limitations in using the @link and @see tags. Firstly I don't seem to be able to link to 'static' methods with these tags, for example: function foo() {} /** * @see #baz */ foo.bar = function() { // do something }; foo.baz = function() { // do something else } Secondly, I can't link to a class constant variable such as: /** * @final * @type String */ foo.MY_CONST = "my constant value"; Is there a way to reference these members with jsdoc? Kind regards Adam |