JS: fix translation of references to external nested classes in files marked with @JsModule. See KT-15797

This commit is contained in:
Alexey Andreev
2017-01-19 15:53:25 +03:00
parent 5fc8208504
commit 245f23e7c2
12 changed files with 64 additions and 7 deletions
@@ -6,6 +6,11 @@ define("lib", [], function() {
return this.x + y;
};
function Nested() {
this.y = 55;
}
A.Nested = Nested;
B = {
x: 123,
foo: function(y) {