()
| 80 | stepOut() { this.sendMessageForMethodChecked("Debugger.stepOut"); } |
| 81 | |
| 82 | setBreakOnException() { |
| 83 | this.sendMessageForMethodChecked( |
| 84 | "Debugger.setPauseOnExceptions", { state : "all" }); |
| 85 | } |
| 86 | |
| 87 | clearBreakOnException() { |
| 88 | const newState = this.isBreakOnUncaughtException() ? "uncaught" : "none"; |
no test coverage detected