(&self, block: &BasicBlock<Self>)
| 41 | type Iter = LowLevelILBlockIter<'func, A, M, F>; |
| 42 | |
| 43 | fn start(&self, block: &BasicBlock<Self>) -> LowLevelILInstruction<'func, A, M, F> { |
| 44 | self.function |
| 45 | .instruction_from_index(block.start_index()) |
| 46 | .unwrap() |
| 47 | } |
| 48 | |
| 49 | fn iter(&self, block: &BasicBlock<Self>) -> LowLevelILBlockIter<'func, A, M, F> { |
| 50 | LowLevelILBlockIter { |
nothing calls this directly
no test coverage detected