(&self, block: &BasicBlock<Self>)
| 14 | type Iter = MediumLevelILBlockIter; |
| 15 | |
| 16 | fn start(&self, block: &BasicBlock<Self>) -> MediumLevelILInstruction { |
| 17 | // TODO: instruction_from_index says that it is not mapped and will do the call |
| 18 | // TODO: What if this IS already MAPPED!?!?!? |
| 19 | self.function |
| 20 | .instruction_from_index(block.start_index()) |
| 21 | .unwrap() |
| 22 | } |
| 23 | |
| 24 | fn iter(&self, block: &BasicBlock<Self>) -> MediumLevelILBlockIter { |
| 25 | MediumLevelILBlockIter { |
nothing calls this directly
no test coverage detected