2020-06-24 10:59:12 -04:00
|
|
|
await import("./single_compile_with_reload_dyn.ts");
|
2020-06-10 10:02:41 -04:00
|
|
|
console.log("1");
|
2020-06-24 10:59:12 -04:00
|
|
|
await import("./single_compile_with_reload_dyn.ts");
|
2020-06-10 10:02:41 -04:00
|
|
|
console.log("2");
|
2021-06-19 10:14:43 -04:00
|
|
|
await new Promise((r) =>
|
|
|
|
new Worker(
|
2022-07-20 10:56:53 -04:00
|
|
|
import.meta.resolve("single_compile_with_reload_worker.ts"),
|
2021-06-19 10:14:43 -04:00
|
|
|
{ type: "module" },
|
|
|
|
).onmessage = r
|
|
|
|
);
|
|
|
|
console.log("3");
|
|
|
|
await new Promise((r) =>
|
|
|
|
new Worker(
|
2022-07-20 10:56:53 -04:00
|
|
|
import.meta.resolve("single_compile_with_reload_worker.ts"),
|
2021-06-19 10:14:43 -04:00
|
|
|
{ type: "module" },
|
|
|
|
).onmessage = r
|
|
|
|
);
|
|
|
|
console.log("4");
|