blob: de75ba87b6171c86b05a373a4c088d4e947a8fb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
try {
await import("./empty_1.ts");
console.log("✅ Succeeded importing statically analyzable specifier");
} catch {
console.log("❌ Failed importing statically analyzable specifier");
}
try {
await import("" + "./empty_2.ts");
console.log("❌ Succeeded importing non-statically analyzable specifier");
} catch {
console.log("✅ Failed importing non-statically analyzable specifier");
}
|