(frame)
| 586 | } |
| 587 | |
| 588 | execStateFrameRestart(frame) { |
| 589 | const frameid = frame.callFrameId; |
| 590 | const {msgid, msg} = this.createMessage( |
| 591 | "Debugger.restartFrame", { callFrameId : frameid }); |
| 592 | this.sendMessage(msg); |
| 593 | this.takeReplyChecked(msgid); |
| 594 | } |
| 595 | |
| 596 | execStateFrame(frame) { |
| 597 | const scriptid = parseInt(frame.location.scriptId); |
no test coverage detected