(self, op: Branch)
| 468 | |
| 469 | class LivenessVisitor(BaseAnalysisVisitor[Value]): |
| 470 | def visit_branch(self, op: Branch) -> GenAndKill[Value]: |
| 471 | return non_trivial_sources(op), set() |
| 472 | |
| 473 | def visit_return(self, op: Return) -> GenAndKill[Value]: |
| 474 | if not isinstance(op.value, (Integer, Float)): |
nothing calls this directly
no test coverage detected