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