summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/bundle/bundle.test.out
blob: 6b1c109d38ce2f554d6f11daa9aa989adf7ead8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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 };