(&self, block: &BasicBlock<Self>)
| 22 | } |
| 23 | |
| 24 | fn iter(&self, block: &BasicBlock<Self>) -> MediumLevelILBlockIter { |
| 25 | MediumLevelILBlockIter { |
| 26 | function: self.function.to_owned(), |
| 27 | range: block.start_index().0..block.end_index().0, |
| 28 | } |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | impl std::fmt::Debug for MediumLevelILBlock { |
no test coverage detected