angular/clutz

inner classes not emitted when outer class is emitted with named export

Closed this issue · 0 comments

For example:

goog.module('innerclass.namedexport');

class A {}

A.B = class {};

exports = {A};

clutz doesn't emit the B class. Note that if exports = A this works as expected.