0
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.test.out

28 lines
520 B
Text
Raw Normal View History

[WILDCARD]
function printHello() {
console.log("Hello");
}
function returnsFoo() {
return "Foo";
}
function printHello2() {
printHello();
}
function returnsHi1() {
return "Hi";
}
function returnsFoo21() {
return returnsFoo();
}
function printHello31() {
printHello2();
}
function throwsError1() {
throw Error("exception from mod1");
}
2021-03-02 07:39:56 -05:00
export { returnsHi1 as returnsHi };
export { returnsFoo21 as returnsFoo2 };
export { printHello31 as printHello3 };
export { throwsError1 as throwsError };
2021-01-11 09:32:34 -05:00