| 1582 | |
| 1583 | |
| 1584 | GlobalDebuggerUI* GlobalDebuggerUI::GetForContext(UIContext* context) |
| 1585 | { |
| 1586 | if (g_contextMap.find(context) != g_contextMap.end()) |
| 1587 | { |
| 1588 | return g_contextMap[context].get(); |
| 1589 | } |
| 1590 | return nullptr; |
| 1591 | } |
| 1592 | |
| 1593 | |
| 1594 | void GlobalDebuggerUI::RemoveForContext(UIContext* context) |
nothing calls this directly
no outgoing calls
no test coverage detected