(&self, cx: &mut RootScope<impl AsContextMut>)
| 351 | /// of the `Store`. |
| 352 | #[cfg(feature = "gc")] |
| 353 | pub unsafe fn to_val(&self, cx: &mut RootScope<impl AsContextMut>) -> Val { |
| 354 | self.to_val_unscoped(cx) |
| 355 | } |
| 356 | |
| 357 | /// Convert this `wasmtime_val_t` into a `wasmtime::Val` (non-gc version). |
| 358 | /// |
no test coverage detected