summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture13.out
blob: 2c511528011b35717fb0942e9836c82ba4d8faf4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function d() {
    let methods;
    const promise = new Promise((resolve, reject)=>{
        methods = {
            resolve,
            reject
        };
    });
    return Object.assign(promise, methods);
}
class A {
    a() {
        this.s.resolve();
    }
    constructor(){
        this.s = d();
    }
}
new A();