summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/fixture11.out
blob: 4f333a513fdfc9544e416aa09f3675e07efaec5e (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
function a() {
    console.log("a");
}
var O1;
(function(O) {
    O[O["A"] = 0] = "A";
    O[O["B"] = 1] = "B";
    O[O["C"] = 2] = "C";
})(O1 || (O1 = {
}));
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();