blob: 2b09e99dbd150e1826e194e498eabe35b5b43bcb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
/* 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/. */
"use strict";
class ConsoleCommands {
constructor({ devToolsClient, hud }) {
this.devToolsClient = devToolsClient;
this.hud = hud;
}
getFrontByID(id) {
return this.devToolsClient.getFrontByID(id);
}
async evaluateJSAsync(expression, options = {}) {
const {
selectedObjectActor,
selectedNodeActor,
frameActor,
selectedTargetFront,
} = options;
let targetFront = this.hud.currentTarget;
const selectedActor =
selectedObjectActor || selectedNodeActor || frameActor;
if (selectedTargetFront) {
targetFront = selectedTargetFront;
} else if (selectedActor) {
const selectedFront = this.getFrontByID(selectedActor);
if (selectedFront) {
targetFront = selectedFront.targetFront;
}
}
const front = await targetFront.getFront("console");
return front.evaluateJSAsync(expression, options);
}
}
module.exports = ConsoleCommands;
|