| 513 | } |
| 514 | |
| 515 | void DebugMessageHandler::HandleDisconnect() |
| 516 | { |
| 517 | Debug("Disconnected from debugger frontend"); |
| 518 | if (debugger_) { |
| 519 | debugger_->Breakpoints().ClearAllBreakpoints(); |
| 520 | if (debugger_->IsPaused()) { |
| 521 | debugger_->ContinueExecution(DbgContinue_Action_CONTINUE, 0, 0); |
| 522 | } |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | void DebugMessageHandler::Send(BackendToDebugger & msg) |
| 527 | { |
nothing calls this directly
no test coverage detected