/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
return {
error: "wrongState",
message: this.constructor.name + " actors can only be accessed while the thread is paused.",
};
};
}
/** * Handle a protocol request to promote a pause-lifetime grip to a * thread-lifetime grip. * * This method isn't used by DevTools frontend, but by VS Code Firefox adapter * in order to keep the object actor alive after resume and be able to remove * watchpoints.
*/
threadGrip() { this.threadActor.promoteObjectToThreadLifetime(this); return {};
}
/** * Handle a protocol request to release a thread-lifetime grip.
*/
destroy() { if (!this.isThreadLifetimePool()) { return {
error: "notReleasable",
message: "Only thread-lifetime actors can be released.",
};
}
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.