(self, op: Assign)
| 487 | return gen, set() |
| 488 | |
| 489 | def visit_assign(self, op: Assign) -> GenAndKill[Value]: |
| 490 | return non_trivial_sources(op), {op.dest} |
| 491 | |
| 492 | def visit_assign_multi(self, op: AssignMulti) -> GenAndKill[Value]: |
| 493 | return non_trivial_sources(op), {op.dest} |
nothing calls this directly
no test coverage detected