()
| 101 | } |
| 102 | |
| 103 | clearBreakOnUncaughtException() { |
| 104 | const newState = this.isBreakOnException() ? "all" : "none"; |
| 105 | this.sendMessageForMethodChecked( |
| 106 | "Debugger.setPauseOnExceptions", { state : newState }); |
| 107 | } |
| 108 | |
| 109 | isBreakOnUncaughtException() { |
| 110 | return !!%IsBreakOnException(this.ExceptionBreak.Uncaught); |
no test coverage detected