Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/generators/   (Browser von der Mozilla Stiftung Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 2 kB image not shown  

Quelle  bug1542660-2.js   Sprache: JAVA

 
// |jit-test| skip-if: !('gc' in this) || !('clearKeptObjects' in this)
// In generators, when we exit a lexical scope, its non-aliased bindings go away;
// they don't keep their last values gc-alive.

let cases = [
  function* onNormalExitFromFunction_VarBinding() {
    var tmp = yield 1;
    consumeValue(tmp);
  },

  function* onNormalExitFromFunction_LetBinding() {
    let tmp = yield 1;
    consumeValue(tmp);
  },

  function* onNormalExitFromBlock() {
    if (typeof onNormalExitFromBlock === 'function') {
      let tmp = yield 1;
      consumeValue(tmp);
    }
    yield 2;
  },

  function* onNormalExitFromCStyleForLet() {
    for (let tmp = yield 1; tmp !== null; tmp = null) {
      consumeValue(tmp);
    }
    yield 2;
  },

  function* onNormalExitFromForLetOf() {
    for (let tmp of [yield 1]) {
      consumeValue(tmp);
    }
    yield 2;
  },

  function* onNormalExitFromForConstOf() {
    for (const tmp of [yield 1]) {
      consumeValue(tmp);
    }
    yield 2;
  },

  function* onNormalExitFromForConstDestructuringOf() {
    for (const {a, b, c, d} of [yield 1]) {
      consumeValue(a);
    }
    yield 2;
  },

  function* onNormalExitFromForConstArrayDestructuringOf() {
    for (const [x] of [[yield 1]]) {
      consumeValue(x);
    }
    yield 2;
  },

  function* onNormalExitFromBlockInLoop() {
    for (var i = 0; i < 2; i++) {
      if (i == 0) {
        let tmp = yield 1;
        consumeValue(tmp);
      } else {
        yield 2;
      }
    }
  },

  function* onBreakFromBlock() {
    x: {
      let tmp = yield 1;
      consumeValue(tmp);
      break x;
    }
    yield 2;
  },

  function* onExitFromCatchBlock() {
    try {
      throw yield 1;
    } catch (exc) {
      consumeValue(exc);
    }
    yield 2;
  },
];

var consumeValue;

function runTest(g) {
  consumeValue = eval("_ => {}");

  let generator = g();
  let result = generator.next();
  assertEq(result.done, false);
  assertEq(result.value, 1);
  let object = {};
  let weakRef = new WeakRef(object);
  result = generator.next(object);
  assertEq(result.value, result.done ? undefined : 2);

  object = null;
  clearKeptObjects();
  gc();
  assertEq(weakRef.deref(), undefined);
}

for (let g of cases) {
  runTest(g);
}

Messung V0.5
C=91 H=82 G=86

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© 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.