deno/cli/tests/top_level_await_circular.js
Bartek Iwańczuk 135053486c
fix: top-level-await module execution (#7946)
This commit changes implementation of top-level-await in "deno_core".

Previously promise returned from module evaluation was not awaited,
leading to out-of-order execution of modules that have TLA. It's been
fixed by changing "JsRuntime::mod_evaluate" to be an async function
that resolves when the promise returned from module evaluation also
resolves. When waiting for promise resolution event loop is polled
repeatedly, until there are no more dynamic imports or pending
ops.
2020-10-14 14:04:09 +02:00

9 lines
178 B
JavaScript

import { foo } from "./tla3/timeout_loop.js";
export const collection = [];
const mod = await import("./tla3/b.js");
console.log("foo in main", foo);
console.log("mod", mod);