(
&self,
loc: L,
)
| 99 | } |
| 100 | |
| 101 | pub fn instruction_at<L: Into<Location>>( |
| 102 | &self, |
| 103 | loc: L, |
| 104 | ) -> Option<LowLevelILInstruction<A, M, F>> { |
| 105 | Some(LowLevelILInstruction::new( |
| 106 | self, |
| 107 | self.instruction_index_at(loc)?, |
| 108 | )) |
| 109 | } |
| 110 | |
| 111 | pub fn instruction_index_at<L: Into<Location>>( |
| 112 | &self, |
no test coverage detected