summaryrefslogtreecommitdiff
path: root/cli/tests/bundle.test.out
blob: 030c0929507abd439bb4913a2e5eac16d59486fa (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 returnsHi1() {
    return "Hi";
}
function returnsFoo21() {
    return returnsFoo();
}
function printHello31() {
    printHello2();
}
function throwsError1() {
    throw Error("exception from mod1");
}
export { returnsHi1 as returnsHi };
export { returnsFoo21 as returnsFoo2 };
export { printHello31 as printHello3 };
export { throwsError1 as throwsError };