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