| 125 | } |
| 126 | |
| 127 | void BreakpointManager::BeginUpdatingNodeBreakpoints() |
| 128 | { |
| 129 | Debug("Debugger::BeginUpdatingNodeBreakpoints()"); |
| 130 | pendingBreakpoints_.reset(new std::unordered_map<uint64_t, Breakpoint>()); |
| 131 | } |
| 132 | |
| 133 | ResultCode BreakpointManager::AddBreakpoint(uint32_t nodeId, uint32_t goalId, bool isInit, int32_t actionIndex, BreakpointType type) |
| 134 | { |
no test coverage detected