(&self)
| 398 | } |
| 399 | |
| 400 | pub(crate) fn runtime_module(&self) -> Option<&crate::Module> { |
| 401 | match &self.runtime_info { |
| 402 | ModuleRuntimeInfo::Module(m) => Some(m), |
| 403 | ModuleRuntimeInfo::Bare(_) => None, |
| 404 | } |
| 405 | } |
| 406 | |
| 407 | /// Translate a module-level interned type index into an engine-level |
| 408 | /// interned type index. |
no outgoing calls
no test coverage detected