mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
This VERIFY is both incorrect and redundant. The VERIFY at step 2 verifies the status when evaluate is called on m_cycle_root.
7 lines
178 B
JavaScript
7 lines
178 B
JavaScript
(async function () {
|
|
const first = import("./cyclic-async-module-a.mjs");
|
|
const second = import("./cyclic-async-module-b.mjs");
|
|
|
|
await first;
|
|
await second;
|
|
})();
|