(self)
| 1489 | class HighLevelILVarSsa(HighLevelILInstruction, SSAVariableInstruction): |
| 1490 | @property |
| 1491 | def var(self) -> 'mediumlevelil.SSAVariable': |
| 1492 | return self.get_var_ssa(0, 1) |
| 1493 | |
| 1494 | @property |
| 1495 | def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected