| 281 | |
| 282 | @dataclass(frozen=True) |
| 283 | class LowLevelILOperationAndSize: |
| 284 | operation: 'LowLevelILOperation' |
| 285 | size: int |
| 286 | |
| 287 | def __repr__(self): |
| 288 | if self.size == 0: |
| 289 | return f"<LowLevelILOperationAndSize: {self.operation.name}>" |
| 290 | return f"<LowLevelILOperationAndSize: {self.operation.name} {self.size}>" |
| 291 | |
| 292 | |
| 293 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected