(self, op: SetMem)
| 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() |
| 497 | |
| 498 | def visit_inc_ref(self, op: IncRef) -> GenAndKill[Value]: |
| 499 | return _EMPTY |
nothing calls this directly
no test coverage detected