mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
38505db391
When a dynamically imported module gets resolved, any code that comes after an await import() to that module will continue running. However, if that is the last code in the evaluation of another dynamically imported module, that second module will not resolve until the next iteration of the event loop, even though it does not depend on the event loop at all. When the event loop is being blocked by a long-running operation, such as a long-running timer, or by an async op that might never end, such as with workers or BroadcastChannels, that will result in the second dynamically imported module not being resolved for a while, or ever. This change fixes this by running the dynamic module loading steps in a loop until no more dynamic modules can be resolved.
2 lines
48 B
TypeScript
2 lines
48 B
TypeScript
await import("./sub2.ts");
|
|
console.log("sub1");
|