Export classes defined wihtin internal modules correctelly

This commit is contained in:
Mohamed Hegazy
2015-03-16 21:18:31 -07:00
parent 99108694d5
commit 3d802438f1
3 changed files with 16 additions and 5 deletions

View File

@@ -165,6 +165,7 @@ var m1;
}
c3.k = 20;
c3.l = 30;
m1.c3 = c3;
class c4 {
constructor() {
this.x = 10;
@@ -205,6 +206,7 @@ var m2;
}
c3.k = 20;
c3.l = 30;
m2.c3 = c3;
class c4 {
constructor() {
this.x = 10;

View File

@@ -27,4 +27,5 @@ var M;
set [Symbol.isRegExp](x) {
}
}
M.C = C;
})(M || (M = {}));