blob: 155430c9950da1f9be278aee29f6aa26958851d5 (
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
28
29
30
31
|
[WILDCARD]
function returnsHi() {
return "Hi";
}
function returnsFoo() {
return "Foo";
}
function printHello() {
console.log("Hello");
}
function printHello2() {
printHello();
}
function returnsFoo2() {
return returnsFoo();
}
function printHello3() {
printHello2();
}
function throwsError() {
throw Error("exception from mod1");
}
const returnsHi1 = returnsHi;
const returnsFoo21 = returnsFoo2;
const printHello31 = printHello3;
const throwsError1 = throwsError;
export { returnsHi as returnsHi };
export { returnsFoo2 as returnsFoo2 };
export { printHello3 as printHello3 };
export { throwsError as throwsError };
|