(
&mut self,
w: &mut dyn Write,
func: &Function,
aliases: &SecondaryMap<Value, Vec<Value>>,
inst: Inst,
indent: usize,
)
| 132 | |
| 133 | impl FuncWriter for PlainWriter { |
| 134 | fn write_instruction( |
| 135 | &mut self, |
| 136 | w: &mut dyn Write, |
| 137 | func: &Function, |
| 138 | aliases: &SecondaryMap<Value, Vec<Value>>, |
| 139 | inst: Inst, |
| 140 | indent: usize, |
| 141 | ) -> fmt::Result { |
| 142 | write_instruction(w, func, aliases, inst, indent) |
| 143 | } |
| 144 | |
| 145 | fn write_block_header( |
| 146 | &mut self, |
no test coverage detected