()
| 95 | }; |
| 96 | |
| 97 | setBreakOnUncaughtException() { |
| 98 | const newState = this.isBreakOnException() ? "all" : "uncaught"; |
| 99 | this.sendMessageForMethodChecked( |
| 100 | "Debugger.setPauseOnExceptions", { state : newState }); |
| 101 | } |
| 102 | |
| 103 | clearBreakOnUncaughtException() { |
| 104 | const newState = this.isBreakOnException() ? "all" : "none"; |
no test coverage detected