| 598 | |
| 599 | |
| 600 | void DebuggerBreakpoints::Apply() |
| 601 | { |
| 602 | if (!m_state->GetAdapter()) |
| 603 | return; |
| 604 | |
| 605 | for (const ModuleNameAndOffset& address : m_breakpoints) |
| 606 | m_state->GetAdapter()->AddBreakpoint(address); |
| 607 | } |
| 608 | |
| 609 | |
| 610 | DebuggerMemory::DebuggerMemory(DebuggerState* state) : m_state(state) {} |
no test coverage detected