(self)
| 2502 | class LowLevelILFlagPhi(LowLevelILInstruction, Phi): |
| 2503 | @property |
| 2504 | def dest(self) -> SSAFlag: |
| 2505 | return self._get_flag_ssa(0, 1) |
| 2506 | |
| 2507 | @property |
| 2508 | def src(self) -> List[SSAFlag]: |
nothing calls this directly
no test coverage detected