static*/
| 241 | |
| 242 | |
| 243 | /*static*/ pair<const Value*,slice> Scope::resolvePointerFromWithRange(const Pointer* src, |
| 244 | const void* dst) noexcept |
| 245 | { |
| 246 | lock_guard<mutex> lock(sMutex); |
| 247 | auto scope = _containing((const Value*)src); |
| 248 | if (!scope) |
| 249 | return { }; |
| 250 | return {scope->resolveExternPointerTo(dst), scope->externDestination()}; |
| 251 | } |
| 252 | |
| 253 | |
| 254 | void Scope::dumpAll() { |
nothing calls this directly
no test coverage detected