summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/bundle.test.out
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/bundle/bundle.test.out')
-rw-r--r--cli/tests/testdata/bundle/bundle.test.out27
1 files changed, 27 insertions, 0 deletions
diff --git a/cli/tests/testdata/bundle/bundle.test.out b/cli/tests/testdata/bundle/bundle.test.out
new file mode 100644
index 000000000..6b1c109d3
--- /dev/null
+++ b/cli/tests/testdata/bundle/bundle.test.out
@@ -0,0 +1,27 @@
+[WILDCARD]
+function printHello() {
+ console.log("Hello");
+}
+function returnsFoo() {
+ return "Foo";
+}
+function printHello2() {
+ printHello();
+}
+function returnsHi() {
+ return "Hi";
+}
+function returnsFoo2() {
+ return returnsFoo();
+}
+function printHello3() {
+ printHello2();
+}
+function throwsError() {
+ throw Error("exception from mod1");
+}
+export { returnsHi as returnsHi };
+export { returnsFoo2 as returnsFoo2 };
+export { printHello3 as printHello3 };
+export { throwsError as throwsError };
+