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

Quellcode-Bibliothek Object-isSameNative.js   Sprache: JAVA

 
// Test that the onNativeCall hook is called when expected.

load(libdir + 'eqArrayHelper.js');

var g = newGlobal({newCompartment: true});
var dbg = Debugger(g);
var gdbg = dbg.addDebuggee(g);

assertEq(gdbg.getProperty("print").return.isSameNative(print), true);
assertEq(gdbg.getProperty("print").return.isSameNative(newGlobal), false);

g.eval(`
const x = [];
Object.defineProperty(x, "a", {
  get: print,
  set: print,
});
function f() {
  x.a++;
  x.length = 0;
  x.push(4, 5, 6);
  x.sort(print);
}
`);

const comparisons = [
  print,
  Array.prototype.push,
  Array.prototype.sort, // Note: self-hosted
  newGlobal
];

const rv = [];
dbg.onNativeCall = (callee, reason) => {
  for (const fn of comparisons) {
    if (callee.isSameNative(fn)) {
      rv.push(fn.name);
    }
  }
}

for (let i = 0; i < 5; i++) {
  rv.length = 0;
  gdbg.executeInGlobal(`f()`);
  assertEqArray(rv, [
    "print""print""push",
    "sort""print""print",
  ]);
}

Messung V0.5
C=89 H=97 G=93

¤ 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.0.14Bemerkung:  (vorverarbeitet)  ¤

*Bot Zugriff






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.