We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d5f09 commit 9f47897Copy full SHA for 9f47897
test/language/import/import-defer/evaluation-triggers/dep-then_FIXTURE.js
@@ -0,0 +1,6 @@
1
+// Copyright (C) 2024 Igalia, S.L. All rights reserved.
2
+// This code is governed by the BSD license found in the LICENSE file.
3
+
4
+globalThis.evaluations.push("then");
5
6
+export function then(cb) { cb(); }
test/language/import/import-defer/evaluation-triggers/dep_FIXTURE.js
+globalThis.evaluations.push("dep");
+export let exported = 3;
test/language/import/import-defer/evaluation-triggers/setup_FIXTURE.js
@@ -0,0 +1,4 @@
+globalThis.evaluations = [];
0 commit comments