The Closure compiler apparently accepts JSDoc like this: ``` js /** * Immutable empty node list. * @constructor * @extends goog.ds.BasicNodeList */ goog.ds.EmptyNodeList = function() { ``` Example taken from [the annotation documentation](https://developers.google.com/closure/compiler/docs/js-for-compiler#tags) `goog.ds.BasicNodeList` is not contained in braces. Doctrine doesn't seem to like this, and does not populate the `type` field for that `extends` tag.
The Closure compiler apparently accepts JSDoc like this:
Example taken from the annotation documentation
goog.ds.BasicNodeListis not contained in braces.Doctrine doesn't seem to like this, and does not populate the
typefield for thatextendstag.