| 169 | } |
| 170 | |
| 171 | std::pair<const dap::TypeInfo*, GenericRequestHandler> request( |
| 172 | const std::string& name) { |
| 173 | std::unique_lock<std::mutex> lock(requestMutex); |
| 174 | auto it = requestMap.find(name); |
| 175 | return (it != requestMap.end()) ? it->second : decltype(it->second){}; |
| 176 | } |
| 177 | |
| 178 | void put(const dap::TypeInfo* typeinfo, |
| 179 | const GenericRequestHandler& handler) { |
no test coverage detected