(&self, loc: L)
| 34 | } |
| 35 | |
| 36 | pub fn instruction_at<L: Into<Location>>(&self, loc: L) -> Option<MediumLevelILInstruction> { |
| 37 | Some(MediumLevelILInstruction::new( |
| 38 | self.to_owned(), |
| 39 | self.instruction_index_at(loc)?, |
| 40 | )) |
| 41 | } |
| 42 | |
| 43 | pub fn instruction_index_at<L: Into<Location>>( |
| 44 | &self, |
nothing calls this directly
no test coverage detected