// |jit-test| error: TestComplete
// onPop can change a termination into a throw.
load(libdir + "asserts.js" );
var g = newGlobal({newCompartment: true });
var dbg = new Debugger(g);
function test(type, provocation) {
var log;
// Help people figure out which 'test' call failed.
print("type: " + JSON.stringify(type));
print("provocation: " + JSON.stringify(provocation));
dbg.onDebuggerStatement = function handleDebuggerStatement(f) {
log += 'd' ;
return null ;
};
dbg.onEnterFrame = function handleEnterFrame(f) {
log += '(' ;
assertEq(f.type, type);
f.onPop = function handlePop(c) {
log += ')' ;
assertEq(c, null );
return { throw : 'snow' };
};
};
log = '' ;
assertThrowsValue(provocation, 'snow' );
assertEq(log, "(d)" );
print();
}
g.eval("function f() { debugger; return 'termination fail'; }" );
test("call" , g.f);
test("call" , function () { return new g.f; });
test("eval" , function () { return g.eval("debugger; \'termination fail\';" ); });
test("global" , function () { return g.evaluate("debugger; \'termination fail\';" ); });
throw 'TestComplete' ;
Messung V0.5 in Prozent C=91 H=96 G=93
¤ Dauer der Verarbeitung: 0.21 Sekunden
(vorverarbeitet am 2026-04-27)
¤
*© Formatika GbR, Deutschland