| 36 | |
| 37 | @dataclass(frozen=True) |
| 38 | class LookupTableEntry: |
| 39 | from_values: List[int] |
| 40 | to_value: int |
| 41 | type: RegisterValueType = RegisterValueType.LookupTableValue |
| 42 | |
| 43 | def __repr__(self): |
| 44 | return f"[{', '.join([f'{i:#x}' for i in self.from_values])}] -> {self.to_value:#x}" |
| 45 | |
| 46 | |
| 47 | @dataclass(frozen=True) |
no outgoing calls
no test coverage detected