(self)
| 1783 | class HighLevelILConstData(HighLevelILInstruction, Constant): |
| 1784 | @property |
| 1785 | def constant_data(self) -> variable.ConstantData: |
| 1786 | return self.get_constant_data(0, 1) |
| 1787 | |
| 1788 | @property |
| 1789 | def detailed_operands(self) -> List[Tuple[str, HighLevelILOperandType, str]]: |
nothing calls this directly
no test coverage detected