()
| 85 | } |
| 86 | |
| 87 | clearBreakOnException() { |
| 88 | const newState = this.isBreakOnUncaughtException() ? "uncaught" : "none"; |
| 89 | this.sendMessageForMethodChecked( |
| 90 | "Debugger.setPauseOnExceptions", { state : newState }); |
| 91 | } |
| 92 | |
| 93 | isBreakOnException() { |
| 94 | return !!%IsBreakOnException(this.ExceptionBreak.Caught); |
no test coverage detected