(&self, block: &BasicBlock<Self>)
| 46 | } |
| 47 | |
| 48 | fn iter(&self, block: &BasicBlock<Self>) -> HighLevelILBlockIter { |
| 49 | HighLevelILBlockIter { |
| 50 | function: self.function.to_owned(), |
| 51 | range: block.start_index().0..block.end_index().0, |
| 52 | } |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | impl Clone for HighLevelILBlock { |
nothing calls this directly
no test coverage detected