function.BasicBlockList of BasicBlocks in the current function (read-only)
(self)
| 668 | |
| 669 | @property |
| 670 | def basic_blocks(self) -> BasicBlockList: |
| 671 | """function.BasicBlockList of BasicBlocks in the current function (read-only)""" |
| 672 | return BasicBlockList(self) |
| 673 | |
| 674 | @property |
| 675 | def is_thunk(self) -> bool: |
no test coverage detected