(&mut self)
| 14 | type Item = HighLevelILInstruction; |
| 15 | |
| 16 | fn next(&mut self) -> Option<Self::Item> { |
| 17 | self.range |
| 18 | .next() |
| 19 | .map(HighLevelInstructionIndex) |
| 20 | // TODO: Is this already MAPPED>!>?!? If so we map twice that is BAD!!!! |
| 21 | .and_then(|i| self.function.instruction_from_index(i)) |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | pub struct HighLevelILBlock { |
nothing calls this directly
no test coverage detected