(&mut self)
| 368 | /// owned only by this StoreCode. |
| 369 | #[cfg(feature = "debug")] |
| 370 | pub fn code_memory_mut(&mut self) -> Option<&mut CodeMemory> { |
| 371 | match &mut self.0 { |
| 372 | StoreCodeStorage::Shared(_) => None, |
| 373 | StoreCodeStorage::Private(m) => Some(m), |
| 374 | } |
| 375 | } |
| 376 | |
| 377 | /// Provide the address range for this StoreCode. |
| 378 | pub fn text_range(&self) -> Range<StoreCodePC> { |
no outgoing calls
no test coverage detected