(
&mut self,
linker: &mut wasmtime::component::Linker<Host>,
)
| 397 | |
| 398 | #[cfg(feature = "debug")] |
| 399 | pub(crate) fn add_debugger_api( |
| 400 | &mut self, |
| 401 | linker: &mut wasmtime::component::Linker<Host>, |
| 402 | ) -> Result<()> { |
| 403 | wasmtime_debugger::add_to_linker(linker, |x| x.ctx().table)?; |
| 404 | Ok(()) |
| 405 | } |
| 406 | |
| 407 | /// Executes the `main` after instantiating it within `store`. |
| 408 | /// |
no test coverage detected