(requestId, command, handler)
| 260 | } |
| 261 | |
| 262 | sendRawCommand(requestId, command, handler) { |
| 263 | if (InspectorTest._dumpInspectorProtocolMessages) |
| 264 | utils.print("frontend: " + command); |
| 265 | this._dispatchTable.set(requestId, handler); |
| 266 | utils.sendMessageToBackend(this.id, command); |
| 267 | } |
| 268 | |
| 269 | stop() { |
| 270 | utils.stop(this.id); |
no test coverage detected