(&self, num_insts: usize)
| 49 | |
| 50 | impl ToBackwardsInsnIndex for InsnIndex { |
| 51 | fn to_backwards_insn_index(&self, num_insts: usize) -> BackwardsInsnIndex { |
| 52 | BackwardsInsnIndex::new(num_insts - self.index() - 1) |
| 53 | } |
| 54 | } |
| 55 | |
| 56 | /// An index referring to an instruction in the VCode when it is backwards, |
no test coverage detected