Symbol scraped from ELF binary object.
| 64 | |
| 65 | @dataclass |
| 66 | class Symbol: |
| 67 | """Symbol scraped from ELF binary object.""" |
| 68 | |
| 69 | mangled: str |
| 70 | demangled: str |
| 71 | defined: bool |
| 72 | disallowed: bool |
| 73 | sources: List[Path] |
| 74 | |
| 75 | |
| 76 | # Cached symbols dictionary. |
no outgoing calls
no test coverage detected