1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/bundle/fixture14.out

32 lines
455 B
Text
Raw Normal View History

const mod = function() {
const mod1 = [];
return {
mod: mod1
};
}();
console.log(mod);
const mod1 = function() {
2021-01-11 09:32:34 -05:00
const c = [];
const c1 = c;
return {
2021-01-11 09:32:34 -05:00
c: c
};
}();
2021-01-11 09:32:34 -05:00
const c = mod1;
const mod2 = function() {
const b = [];
const b1 = b;
return {
2021-01-11 09:32:34 -05:00
b: b
};
}();
const b = mod2;
const mod3 = function() {
2021-01-11 09:32:34 -05:00
const a = [];
const a1 = a;
return {
2021-01-11 09:32:34 -05:00
a: a
};
}();
2021-01-11 09:32:34 -05:00
const a = mod3;