Basic block index in list of blocks for the function (read-only)
(self)
| 361 | |
| 362 | @property |
| 363 | def index(self) -> int: |
| 364 | """Basic block index in list of blocks for the function (read-only)""" |
| 365 | return core.BNGetBasicBlockIndex(self.handle) |
| 366 | |
| 367 | def _make_edges(self, edges, count: int, direction: bool) -> List[BasicBlockEdge]: |
| 368 | assert edges is not None, "Got empty edges list from core" |
no outgoing calls
no test coverage detected