(self)
| 2484 | class LowLevelILRegStackPhi(LowLevelILInstruction, RegisterStack, Phi): |
| 2485 | @property |
| 2486 | def dest(self) -> SSARegisterStack: |
| 2487 | return self._get_reg_stack_ssa(0, 1) |
| 2488 | |
| 2489 | @property |
| 2490 | def src(self) -> List[SSARegisterStack]: |
nothing calls this directly
no test coverage detected