AaronNGray / jsdoc-toolkit

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

Link does not resolve inherited methods #267

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
I'd like the @link tag to resolve inherited methods/properties. Consider the 
following example:

    /** @class */
    function Base() {}
    /** Foo */
    Base.prototype.foo= function() {}

    /** @class Child
        @augments Base
     */
    function Child() {}
    /** This method calls {@link #foo} */
    Child.prototype.bar= function() { this.foo(); }

Currently, this will generate a link to foo for Child.html.

Original issue reported on code.google.com by jeff%met...@gtempaccount.com on 16 Nov 2009 at 8:01

GoogleCodeExporter commented 9 years ago
I've created a patch that adds this functionality.

Original comment by jeff%met...@gtempaccount.com on 16 Nov 2009 at 11:02

Attachments:

GoogleCodeExporter commented 9 years ago

Original comment by micmath on 21 Nov 2009 at 6:03

GoogleCodeExporter commented 9 years ago
Thank you. This was committed in revision 823.

Original comment by micmath on 21 Nov 2009 at 8:48

GoogleCodeExporter commented 9 years ago
Jeff, I think I got your name wrong in the Changes.txt file. I'll fix that but 
by which name would you like me to 
credit you?

Original comment by micmath on 21 Nov 2009 at 8:49