Returns an object that displays `inst`.
(&'a self, inst: Inst)
| 843 | |
| 844 | /// Returns an object that displays `inst`. |
| 845 | pub fn display_inst<'a>(&'a self, inst: Inst) -> DisplayInst<'a> { |
| 846 | DisplayInst(self, inst) |
| 847 | } |
| 848 | |
| 849 | /// Returns an object that displays the given `value`'s defining instruction. |
| 850 | /// |
no test coverage detected