static*/
| 232 | |
| 233 | |
| 234 | /*static*/ const Value* Scope::resolvePointerFrom(const internal::Pointer* src, |
| 235 | const void *dst) noexcept |
| 236 | { |
| 237 | lock_guard<mutex> lock(sMutex); |
| 238 | auto scope = _containing((const Value*)src); |
| 239 | return scope ? scope->resolveExternPointerTo(dst) : nullptr; |
| 240 | } |
| 241 | |
| 242 | |
| 243 | /*static*/ pair<const Value*,slice> Scope::resolvePointerFromWithRange(const Pointer* src, |
nothing calls this directly
no test coverage detected