(self, op: Goto)
| 275 | self.fail(op, f"RPrimitive expected, got {type(v.type).__name__}") |
| 276 | |
| 277 | def visit_goto(self, op: Goto) -> None: |
| 278 | self.check_control_op_targets(op) |
| 279 | |
| 280 | def visit_branch(self, op: Branch) -> None: |
| 281 | self.check_control_op_targets(op) |
nothing calls this directly
no test coverage detected