(raw: &'a Self::Raw, context: &'a Self::Context)
| 1489 | } |
| 1490 | |
| 1491 | unsafe fn wrap_raw<'a>(raw: &'a Self::Raw, context: &'a Self::Context) -> Self::Wrapped<'a> { |
| 1492 | // TODO: This needs to be tested!!!! |
| 1493 | // TODO: What if this does not need to be mapped!!!! |
| 1494 | context |
| 1495 | .instruction_from_index(MediumLevelInstructionIndex(*raw)) |
| 1496 | .unwrap() |
| 1497 | } |
| 1498 | } |
| 1499 | |
| 1500 | #[derive(Debug, Copy, Clone)] |
nothing calls this directly
no test coverage detected