Represents a symbol in the binary
| 27 | |
| 28 | @dataclass |
| 29 | class SymbolInfo: |
| 30 | """Represents a symbol in the binary""" |
| 31 | |
| 32 | address: str |
| 33 | size: int |
| 34 | type: str |
| 35 | name: str |
| 36 | demangled_name: str |
| 37 | source: str # STRICT: NO defaults - all callers must provide explicit source |
| 38 | |
| 39 | |
| 40 | @dataclass |
no outgoing calls