(self, op: AssignMulti)
| 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} |
| 494 | |
| 495 | def visit_set_mem(self, op: SetMem) -> GenAndKill[Value]: |
| 496 | return non_trivial_sources(op), set() |
nothing calls this directly
no test coverage detected