| 140 | |
| 141 | @dataclass(frozen=True, repr=False) |
| 142 | class MediumLevelILOperationAndSize: |
| 143 | operation: MediumLevelILOperation |
| 144 | size: int |
| 145 | |
| 146 | def __repr__(self): |
| 147 | if self.size == 0: |
| 148 | return f"<MediumLevelILOperationAndSize: {self.operation.name}>" |
| 149 | return f"<MediumLevelILOperationAndSize: {self.operation.name} {self.size}>" |
| 150 | |
| 151 | |
| 152 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected