const regularLoader = new DevToolsLoader(); Assert.notStrictEqual(
DevToolsSpecialGlobal,
regularLoader.loader.sharedGlobal, "The regular loader is not using the special DevTools global"
);
info("Assert the key difference with the other regular loaders:"); Assert.strictEqual(
DevToolsSpecialGlobal,
loader.loader.sharedGlobal, "The system principal loader is using the special DevTools global"
);
ok(loader.loader, "Loader is not destroyed before calling release");
info("Now assert the precise behavior of release");
releaseDistinctSystemPrincipalLoader({});
ok(
loader.loader, "Loader is still not destroyed after calling release with another requester"
);
releaseDistinctSystemPrincipalLoader(requester);
ok(
!loader.loader, "Loader is destroyed after calling release with the right requester"
);
info("Now test the behavior with two concurrent usages"); const loader2 = useDistinctSystemPrincipalLoader(requester); Assert.notEqual(loader, loader2, "We get a new loader instance"); Assert.strictEqual(
DevToolsSpecialGlobal,
loader2.loader.sharedGlobal, "The new system principal loader is also using the special DevTools global"
);
const loader3 = useDistinctSystemPrincipalLoader(requester2); Assert.equal(loader2, loader3, "The two loader last loaders are shared");
releaseDistinctSystemPrincipalLoader(requester);
ok(loader2.loader, "Loader isn't destroy on the first call to destroy");
releaseDistinctSystemPrincipalLoader(requester2);
ok(!loader2.loader, "Loader is destroyed on the second call to destroy");
}
¤ Dauer der Verarbeitung: 0.23 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.