(&mut self, depth: u32)
| 323 | } |
| 324 | |
| 325 | fn visit_br(&mut self, depth: u32) -> Self::Output { |
| 326 | self.emit_dropkeep_to_label(depth); |
| 327 | self.emit_branch_jump_or_return(depth); |
| 328 | } |
| 329 | |
| 330 | fn visit_br_if(&mut self, depth: u32) -> Self::Output { |
| 331 | let cond_jump_ip = self.instructions.len(); |
nothing calls this directly
no test coverage detected