const { Actor } = require("resource://devtools/shared/protocol/Actor.js");
/** * Test actor designed to check that clients are properly notified of errors when calling * methods on old style actors.
*/ class ErrorActor extends Actor {
constructor(conn, tab) { super(conn, { typeName: "error", methods: [] }); this.tab = tab; this.requestTypes = {
error: this.onError,
};
}
onError() { thrownew Error("error");
}
}
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.