(&mut self)
| 394 | |
| 395 | impl Drop for CompiledTestFile { |
| 396 | fn drop(&mut self) { |
| 397 | // Freeing the module's memory erases the compiled functions. |
| 398 | // This should be safe since their pointers never leave this struct. |
| 399 | unsafe { self.module.take().unwrap().free_memory() } |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | std::thread_local! { |
nothing calls this directly
no test coverage detected