Source code

Revision control

Copy as Markdown

Other Tools

/* Any copyright is dedicated to the Public Domain.
"use strict";
const { Actor } = require("resource://devtools/shared/protocol/Actor.js");
class TestActor1 extends Actor {
constructor(conn, tab) {
super(conn, { typeName: "testOne", methods: [] });
this.tab = tab;
this.requestTypes = {
ping: TestActor1.prototype.onPing,
};
}
grip() {
return { actor: this.actorID, test: "TestActor1" };
}
onPing() {
return { pong: "pong" };
}
}
exports.TestActor1 = TestActor1;