One of the tedious tasks of making API docs is having to make sure that overridden APIs in subclasses have the same docs text found in their super classes. It would be nice to have some sort of lookup feature that when the parsers sees the @inheritdoc string, it will try to find the original API docs text in the super class and build from there. An example of this can be found in the asdocs generator for Flash/Actionscript
class Base
#
# A method
#
foo: ->
class Subbase extends Base
#
# @inheritdoc
#
foo: ->
super
One of the tedious tasks of making API docs is having to make sure that overridden APIs in subclasses have the same docs text found in their super classes. It would be nice to have some sort of lookup feature that when the parsers sees the
@inheritdoc
string, it will try to find the original API docs text in the super class and build from there. An example of this can be found in the asdocs generator for Flash/Actionscript