js-dossier icon indicating copy to clipboard operation
js-dossier copied to clipboard

Named nested classes show up twice

Open shicks opened this issue 7 years ago • 0 comments

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.

shicks avatar Mar 01 '17 22:03 shicks