(self, op: Branch)
| 278 | self.check_control_op_targets(op) |
| 279 | |
| 280 | def visit_branch(self, op: Branch) -> None: |
| 281 | self.check_control_op_targets(op) |
| 282 | |
| 283 | def visit_return(self, op: Return) -> None: |
| 284 | self.check_type_coercion(op, op.value.type, self.parent_fn.decl.sig.ret_type) |
nothing calls this directly
no test coverage detected