| 140 | |
| 141 | @dataclass(frozen=True, eq=False) |
| 142 | class ConstantPointerRegisterValue(RegisterValue): |
| 143 | offset: int = 0 |
| 144 | type: RegisterValueType = RegisterValueType.ConstantPointerValue |
| 145 | |
| 146 | def __repr__(self): |
| 147 | return f"<const ptr {self.value:#x}>" |
| 148 | |
| 149 | |
| 150 | @dataclass(frozen=True, eq=False) |
no outgoing calls
no test coverage detected