Function symbol(read-only)
(self)
| 593 | |
| 594 | @property |
| 595 | def symbol(self) -> 'types.CoreSymbol': |
| 596 | """Function symbol(read-only)""" |
| 597 | sym = core.BNGetFunctionSymbol(self.handle) |
| 598 | assert sym is not None, "core.BNGetFunctionSymbol returned None" |
| 599 | return types.CoreSymbol(sym) |
| 600 | |
| 601 | @property |
| 602 | def auto(self) -> bool: |
no outgoing calls
no test coverage detected