1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-15 16:43:44 -05:00
denoland-deno/cli/tests/bundle.test.out
Luca Casonato 40fc5f55ea
chore: update crates (#9251)
Updates SWC, dprint, deno_lint, deno_doc, serde, and Tokio (to 1.1.0).

Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-01-26 17:00:40 +01:00

27 lines
520 B
Text

[WILDCARD]
function printHello() {
console.log("Hello");
}
function returnsFoo() {
return "Foo";
}
function printHello2() {
printHello();
}
function returnsHi1() {
return "Hi";
}
export { returnsHi1 as returnsHi };
function returnsFoo21() {
return returnsFoo();
}
export { returnsFoo21 as returnsFoo2 };
function printHello31() {
printHello2();
}
export { printHello31 as printHello3 };
function throwsError1() {
throw Error("exception from mod1");
}
export { throwsError1 as throwsError };