(&mut self)
| 199 | } |
| 200 | |
| 201 | fn emit_isolate_handle(&mut self) { |
| 202 | let handle = self.runtime.v8_isolate().thread_safe_handle(); |
| 203 | |
| 204 | let mut th = self.shutdown_handle.inner.write().unwrap(); |
| 205 | th.isolate_handle = Some(handle); |
| 206 | } |
| 207 | |
| 208 | pub async fn run(&mut self) { |
| 209 | self.emit_isolate_handle(); |
no test coverage detected