0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/cli/tests/testdata/bundle/fixture11.out

31 lines
443 B
Text
Raw Normal View History

function a() {
console.log("a");
}
2021-03-02 07:39:56 -05:00
var O1;
(function(O) {
O[O["A"] = 0] = "A";
O[O["B"] = 1] = "B";
O[O["C"] = 2] = "C";
2021-03-02 07:39:56 -05:00
})(O1 || (O1 = {
}));
2021-03-02 07:39:56 -05:00
export { O1 as O };
class A {
#a;
#c;
constructor(o = {
}){
2021-03-02 07:39:56 -05:00
const { a: a1 = a , c , } = o;
this.#a = a1;
this.#c = c;
}
a() {
this.#a();
}
c() {
console.log(this.#c);
}
}
2021-03-02 07:39:56 -05:00
const a2 = new A();
a2.a();
a2.c();