| 1571 | |
| 1572 | |
| 1573 | GlobalDebuggerUI* GlobalDebuggerUI::CreateForContext(UIContext* context) |
| 1574 | { |
| 1575 | if (g_contextMap.find(context) != g_contextMap.end()) |
| 1576 | { |
| 1577 | return g_contextMap[context].get(); |
| 1578 | } |
| 1579 | g_contextMap.try_emplace(context, std::make_unique<GlobalDebuggerUI>(context)); |
| 1580 | return g_contextMap[context].get(); |
| 1581 | } |
| 1582 | |
| 1583 | |
| 1584 | GlobalDebuggerUI* GlobalDebuggerUI::GetForContext(UIContext* context) |
nothing calls this directly
no outgoing calls
no test coverage detected