summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture11.out
blob: 876eb45ac49934152615cc2388a36b9650221292 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
function a() {
    console.log("a");
}
const a1 = a;
var O3;
(function(O1) {
    O1[O1["A"] = 0] = "A";
    O1[O1["B"] = 1] = "B";
    O1[O1["C"] = 2] = "C";
})(O3 || (O3 = {
}));
const O1 = O3;
const a2 = a1;
const O2 = O1;
export { O2 as O };
class A {
    #a;
    #c;
    constructor(o = {
    }){
        const { a: a3 = a2 , c ,  } = o;
        this.#a = a3;
        this.#c = c;
    }
    a() {
        this.#a();
    }
    c() {
        console.log(this.#c);
    }
}
const a4 = new A();
a4.a();
a4.c();