// Make a bogus request to the pause-lifetime actor. Should get // unrecognized-packet-type (and not no-such-actor). try {
await client.request({ to: pauseActor, type: "bogusRequest" });
ok(false, "bogusRequest should throw");
} catch (e) {
ok(true, "bogusRequest thrown"); Assert.equal(e.error, "unrecognizedPacketType");
}
await threadFront.resume();
// Now that we've resumed, should get no-such-actor for the // same request. try {
await client.request({ to: pauseActor, type: "bogusRequest" });
ok(false, "bogusRequest should throw");
} catch (e) {
ok(true, "bogusRequest thrown"); Assert.equal(e.error, "noSuchActor");
}
})
);
function evaluateTestCode(debuggee) {
debuggee.eval( "(" + function () { function stopMe() {
debugger;
}
stopMe();
} + ")()"
);
}
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 ist noch experimentell.