// Make a bogus request to the grip actor. Should get // unrecognized-packet-type (and not no-such-actor). try {
await client.request({ to: objActor, 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: objActor, type: "bogusRequest" });
ok(false, "bogusRequest should throw");
} catch (e) {
ok(true, "bogusRequest thrown"); Assert.equal(e.error, "noSuchActor");
}
})
);
function evaluateTestCode(debuggee) {
debuggee.eval( "(" + function () { // These arguments are tested. // eslint-disable-next-line no-unused-vars function stopMe(obj) {
debugger;
}
stopMe({ foo: "bar" });
} + ")()"
);
}
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.