(&self, block: &BasicBlock<Self>)
| 39 | type Iter = HighLevelILBlockIter; |
| 40 | |
| 41 | fn start(&self, block: &BasicBlock<Self>) -> HighLevelILInstruction { |
| 42 | // TODO: Is this start index already mappedd????? |
| 43 | self.function |
| 44 | .instruction_from_index(block.start_index()) |
| 45 | .unwrap() |
| 46 | } |
| 47 | |
| 48 | fn iter(&self, block: &BasicBlock<Self>) -> HighLevelILBlockIter { |
| 49 | HighLevelILBlockIter { |
nothing calls this directly
no test coverage detected