summaryrefslogtreecommitdiff
path: root/cli/tests/bundle/fixture11.out
blob: 3dc1a454b7d03032308a66ae155bdce9797d1edb (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
function a() {
    console.log("a");
}
var O2;
(function(O1) {
    O1[O1["A"] = 0] = "A";
    O1[O1["B"] = 1] = "B";
    O1[O1["C"] = 2] = "C";
})(O2 || (O2 = {
}));
const O1 = O2;
export { O1 as O };
class A {
    #a;
    #c;
    constructor(o = {
    }){
        const { a: a1 = a , c ,  } = o;
        this.#a = a1;
        this.#c = c;
    }
    a() {
        this.#a();
    }
    c() {
        console.log(this.#c);
    }
}
const a2 = new A();
a2.a();
a2.c();