Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/xpconnect/tests/unit/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  test_weak_keys.js   Sprache: JAVA

 
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */


/* See https://bugzilla.mozilla.org/show_bug.cgi?id=1165807 */

function run_test()
{
  var bunnies = new String("bunnies");
  var lizards = new String("lizards");

  var weakset = new WeakSet([bunnies, lizards]);
  var weakmap = new WeakMap();
  weakmap.set(bunnies, 23);
  weakmap.set(lizards, "oh no");

  var keys = ChromeUtils.nondeterministicGetWeakMapKeys(bunnies);
  equal(keys, undefined, "test nondeterministicGetWeakMapKeys on non-WeakMap");

  keys = ChromeUtils.nondeterministicGetWeakMapKeys(weakmap);
  equal(keys.length, 2, "length of nondeterministicGetWeakMapKeys");
  equal(weakmap.get(bunnies), 23, "check bunnies in weakmap");
  equal(weakmap.get(lizards), "oh no""check lizards in weakmap");

  keys = ChromeUtils.nondeterministicGetWeakSetKeys(bunnies);
  equal(keys, undefined, "test nondeterministicGetWeakSetKeys on non-WeakMap");

  keys = ChromeUtils.nondeterministicGetWeakSetKeys(weakset);
  equal(keys.length, 2, "length of nondeterministicGetWeakSetKeys");
  ok(weakset.has(bunnies), "check bunnies in weakset");
  ok(weakset.has(lizards), "check lizards in weakset");

  bunnies = null;
  keys = null;

  Cu.forceGC();

  keys = ChromeUtils.nondeterministicGetWeakMapKeys(weakmap);
  equal(keys.length, 1, "length of nondeterministicGetWeakMapKeys after GC");
  equal(weakmap.get(lizards), "oh no""check lizards still in weakmap");

  keys = ChromeUtils.nondeterministicGetWeakSetKeys(weakset);
  equal(keys.length, 1, "length of nondeterministicGetWeakSetKeys after GC");
  ok(weakset.has(lizards), "check lizards still in weakset");
}

Messung V0.5
C=93 H=92 G=92

¤ Dauer der Verarbeitung: 0.4 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

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 und die Messung sind noch experimentell.