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 2 kB image not shown  

Quelle  Debugger-onNativeCall-01.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);

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

for (let i = 0; i < 5; i++) {
  g.f();
}

const rv = [];
dbg.onNativeCall = (callee, reason) => { rv.push(callee.name, reason); };

var dbg2 = Debugger(g);
var gdbg2 = dbg2.addDebuggee(g);

const fscript = gdbg.getOwnPropertyDescriptor('f').value.script;

for (let i = 0; i < 5; i++) {
  // The onNativeCall hook is called when doing global evaluations.
  rv.length = 0;
  gdbg.executeInGlobal(`f()`);
  assertEqArray(rv, ["print""get""print""set""push""call"]);

  // The onNativeCall hook is called when doing frame evaluations.
  let handlerCalled = false;
  const handler = {
    hit(frame) {
      fscript.clearBreakpoint(handler);
      rv.length = 0;
      frame.eval(`f()`);
      assertEqArray(rv, ["print""get""print""set""push""call"]);
      handlerCalled = true;
    },
  };
  fscript.setBreakpoint(fscript.mainOffset, handler);
  g.f();
  assertEq(handlerCalled, true);

  // The onNativeCall hook is also called when not in a debugger evaluation.
  rv.length = 0;
  g.f();
  assertEqArray(rv, ["print""get""print""set""push""call"]);

  // The onNativeCall hook is *not* called when in a debugger evaluation
  // associated with a different debugger using exclusiveDebuggerOnEval.
  rv.length = 0;
  dbg2.exclusiveDebuggerOnEval = true;
  assertEq(dbg2.exclusiveDebuggerOnEval, true);
  gdbg2.executeInGlobal(`f()`);
  assertEqArray(rv, []);

  // The onNativeCall hook is called when that same distinct debugger
  // doesn't have the exclusiveDebuggerOnEval flag set to true
  rv.length = 0;
  dbg2.exclusiveDebuggerOnEval = false;
  assertEq(dbg2.exclusiveDebuggerOnEval, false);
  gdbg2.executeInGlobal(`f()`);
  assertEqArray(rv, ["print""get""print""set""push""call"]);
}

Messung V0.5
C=90 H=90 G=90

¤ Dauer der Verarbeitung: 0.3 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.