| 86 | |
| 87 | @dataclass(frozen=True) |
| 88 | class ArchAndAddr: |
| 89 | arch: 'architecture.Architecture' |
| 90 | addr: int |
| 91 | |
| 92 | def __repr__(self): |
| 93 | return f"<archandaddr {self.arch} @ {self.addr:#x}>" |
| 94 | |
| 95 | |
| 96 | class _FunctionAssociatedDataStore(associateddatastore._AssociatedDataStore): |
no outgoing calls
no test coverage detected