(&self)
| 672 | #[cfg(any(feature = "cranelift", feature = "winch"))] |
| 673 | impl Engine { |
| 674 | pub(crate) fn compiler(&self) -> Option<&dyn wasmtime_environ::Compiler> { |
| 675 | self.inner.compiler.as_deref() |
| 676 | } |
| 677 | |
| 678 | pub(crate) fn try_compiler(&self) -> Result<&dyn wasmtime_environ::Compiler> { |
| 679 | self.compiler() |
no outgoing calls
no test coverage detected