mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
15 lines
357 B
JavaScript
15 lines
357 B
JavaScript
var M1;
|
|
(M1 || (M1 = {
|
|
})).C1 = class {
|
|
constructor(){
|
|
this.m1 = new (require("./foo2")).M1.C1(), this.m1.y = 10, this.m1.x = 20;
|
|
}
|
|
}, (M1 || (M1 = {
|
|
})).C1 = class {
|
|
constructor(){
|
|
this.m1 = new (require("./foo1")).M1.C1(), this.m1.y = 10, this.m1.x = 20;
|
|
var tmp = new M1.C1();
|
|
tmp.y = 10, tmp.x = 20;
|
|
}
|
|
};
|