(self)
| 1770 | class LowLevelILFlagSsa(LowLevelILInstruction, SSA): |
| 1771 | @property |
| 1772 | def src(self) -> SSAFlag: |
| 1773 | return self._get_flag_ssa(0, 1) |
| 1774 | |
| 1775 | @property |
| 1776 | def detailed_operands(self) -> List[Tuple[str, LowLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected