(
&mut self,
w: &mut dyn Write,
func: &Function,
aliases: &SecondaryMap<Value, Vec<Value>>,
inst: Inst,
indent: usize,
)
| 55 | } |
| 56 | |
| 57 | fn write_instruction( |
| 58 | &mut self, |
| 59 | w: &mut dyn Write, |
| 60 | func: &Function, |
| 61 | aliases: &SecondaryMap<Value, Vec<Value>>, |
| 62 | inst: Inst, |
| 63 | indent: usize, |
| 64 | ) -> fmt::Result { |
| 65 | pretty_instruction_error(w, func, aliases, inst, indent, &mut *self.0, self.1) |
| 66 | } |
| 67 | |
| 68 | fn write_entity_definition( |
| 69 | &mut self, |
no test coverage detected