зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1515116 - Remove all useless constructor methods on Fronts. r=jdescottes
Depends on D14914 Differential Revision: https://phabricator.services.mozilla.com/D14915 --HG-- extra : moz-landing-system : lando
This commit is contained in:
Родитель
460c16cd22
Коммит
2f8299a363
|
@ -11,9 +11,6 @@ const { FrontClassWithSpec, registerFront } = require("devtools/shared/protocol"
|
||||||
loader.lazyImporter(this, "NetUtil", "resource://gre/modules/NetUtil.jsm");
|
loader.lazyImporter(this, "NetUtil", "resource://gre/modules/NetUtil.jsm");
|
||||||
|
|
||||||
class ActorActorFront extends FrontClassWithSpec(actorActorSpec) {
|
class ActorActorFront extends FrontClassWithSpec(actorActorSpec) {
|
||||||
constructor(client, form) {
|
|
||||||
super(client, form);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.ActorActorFront = ActorActorFront;
|
exports.ActorActorFront = ActorActorFront;
|
||||||
|
|
|
@ -10,10 +10,6 @@ const { FrontClassWithSpec, registerFront } = require("devtools/shared/protocol"
|
||||||
* The corresponding Front object for the FunctionCallActor.
|
* The corresponding Front object for the FunctionCallActor.
|
||||||
*/
|
*/
|
||||||
class FunctionCallFront extends FrontClassWithSpec(functionCallSpec) {
|
class FunctionCallFront extends FrontClassWithSpec(functionCallSpec) {
|
||||||
constructor(client, form) {
|
|
||||||
super(client, form);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds some generic information directly to this instance,
|
* Adds some generic information directly to this instance,
|
||||||
* to avoid extra roundtrips.
|
* to avoid extra roundtrips.
|
||||||
|
|
|
@ -26,10 +26,6 @@ const HIDDEN_CLASS = "__fx-devtools-hide-shortcut__";
|
||||||
* Client side of a node list as returned by querySelectorAll()
|
* Client side of a node list as returned by querySelectorAll()
|
||||||
*/
|
*/
|
||||||
class NodeListFront extends FrontClassWithSpec(nodeListSpec) {
|
class NodeListFront extends FrontClassWithSpec(nodeListSpec) {
|
||||||
constructor(client, form) {
|
|
||||||
super(client, form);
|
|
||||||
}
|
|
||||||
|
|
||||||
marshallPool() {
|
marshallPool() {
|
||||||
return this.parent();
|
return this.parent();
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,10 +9,6 @@ const {longStringSpec, SimpleStringFront} = require("devtools/shared/specs/strin
|
||||||
const { FrontClassWithSpec, registerFront } = require("devtools/shared/protocol");
|
const { FrontClassWithSpec, registerFront } = require("devtools/shared/protocol");
|
||||||
|
|
||||||
class LongStringFront extends FrontClassWithSpec(longStringSpec) {
|
class LongStringFront extends FrontClassWithSpec(longStringSpec) {
|
||||||
constructor(client) {
|
|
||||||
super(client);
|
|
||||||
}
|
|
||||||
|
|
||||||
destroy() {
|
destroy() {
|
||||||
this.initial = null;
|
this.initial = null;
|
||||||
this.length = null;
|
this.length = null;
|
||||||
|
|
|
@ -14,9 +14,6 @@ const { FrontClassWithSpec, registerFront } = require("devtools/shared/protocol"
|
||||||
* The corresponding Front object for the ShaderActor.
|
* The corresponding Front object for the ShaderActor.
|
||||||
*/
|
*/
|
||||||
class ShaderFront extends FrontClassWithSpec(shaderSpec) {
|
class ShaderFront extends FrontClassWithSpec(shaderSpec) {
|
||||||
constructor(client, form) {
|
|
||||||
super(client, form);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.ShaderFront = ShaderFront;
|
exports.ShaderFront = ShaderFront;
|
||||||
|
@ -26,9 +23,6 @@ registerFront(ShaderFront);
|
||||||
* The corresponding Front object for the ProgramActor.
|
* The corresponding Front object for the ProgramActor.
|
||||||
*/
|
*/
|
||||||
class ProgramFront extends FrontClassWithSpec(programSpec) {
|
class ProgramFront extends FrontClassWithSpec(programSpec) {
|
||||||
constructor(client, form) {
|
|
||||||
super(client, form);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
exports.ProgramFront = ProgramFront;
|
exports.ProgramFront = ProgramFront;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче