| 131 | |
| 132 | @dataclass(frozen=True, eq=False) |
| 133 | class ConstantRegisterValue(RegisterValue): |
| 134 | offset: int = 0 |
| 135 | type: RegisterValueType = RegisterValueType.ConstantValue |
| 136 | |
| 137 | def __repr__(self): |
| 138 | return f"<const {self.value:#x}>" |
| 139 | |
| 140 | |
| 141 | @dataclass(frozen=True, eq=False) |
no outgoing calls
no test coverage detected