(&self)
| 676 | } |
| 677 | |
| 678 | pub(crate) fn try_compiler(&self) -> Result<&dyn wasmtime_environ::Compiler> { |
| 679 | self.compiler() |
| 680 | .ok_or_else(|| format_err!("Engine was not configured with a compiler")) |
| 681 | } |
| 682 | |
| 683 | /// Ahead-of-time (AOT) compiles a WebAssembly module. |
| 684 | /// |
no test coverage detected