diff --git a/lib/jsduck/inherit_doc.rb b/lib/jsduck/inherit_doc.rb index 38594090e47f75281f60ba7b950640ca37c6d6f8..9cb0c34598b9a8638e5604f689b52a843da9136f 100644 --- a/lib/jsduck/inherit_doc.rb +++ b/lib/jsduck/inherit_doc.rb @@ -40,7 +40,7 @@ module JsDuck end # remember properties that have changed to configs - if m[:tagname] != parent[:tagname] + if m[:autodetected] && m[:tagname] != parent[:tagname] new_cfgs << m end end diff --git a/spec/aggregator_inheritdoc_spec.rb b/spec/aggregator_inheritdoc_spec.rb index b397c18d7054577f5032fcd63160bb012842daad..6f07caa434ae366f61c6559445b2cba36490f4f7 100644 --- a/spec/aggregator_inheritdoc_spec.rb +++ b/spec/aggregator_inheritdoc_spec.rb @@ -218,6 +218,33 @@ describe JsDuck::Aggregator do it_behaves_like "@inheritdoc" end + describe "using @inheritdoc to inherit from another type of member" do + before do + @docs = parse(<<-EOF) + /** @class Foo */ + /** + * @method bar + * Original comment. + */ + + /** @class Core */ + /** + * @event foobar + * New comment. + * @inheritdoc Foo#method-bar + */ + EOF + @orig = @docs["Foo"][:members][0] + @inheritdoc = @docs["Core"][:members][0] + end + + it_behaves_like "@inheritdoc" + + it "keeps the type of the member" do + @inheritdoc[:tagname].should == :event + end + end + describe "@inheritdoc without type info uses the type of itself" do before do @docs = parse(<<-EOF)