summaryrefslogtreecommitdiff
path: root/cli/tests/bundle.test.out
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2021-03-02 13:39:56 +0100
committerGitHub <noreply@github.com>2021-03-02 13:39:56 +0100
commitfaf2e802724be9d493dad232759b76e7253feab0 (patch)
tree50be81b16f237ef7d366ba29f816906488a5bb88 /cli/tests/bundle.test.out
parentbadc88b78a623d66ae86157d44a438c14dd7616a (diff)
chore: upgrade crates (#9632)
Diffstat (limited to 'cli/tests/bundle.test.out')
-rw-r--r--cli/tests/bundle.test.out6
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/tests/bundle.test.out b/cli/tests/bundle.test.out
index b21e53b42..030c09295 100644
--- a/cli/tests/bundle.test.out
+++ b/cli/tests/bundle.test.out
@@ -11,17 +11,17 @@ function printHello2() {
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 { returnsHi1 as returnsHi };
+export { returnsFoo21 as returnsFoo2 };
+export { printHello31 as printHello3 };
export { throwsError1 as throwsError };