js-dossier
js-dossier copied to clipboard
Named nested classes show up twice
The following
goog.module('ns.Foo');
class Foo {}
Foo.Bar = class Bar {};
exports = Foo;
produces three classes in the types list: ns.Foo
, ns.Foo.Bar
, and ns.Foo.sdecl$var0
. The third is an alias to the second.