Internal method used to instantiate child instances
(self, handle: core.BNBasicBlockHandle)
| 218 | start += length |
| 219 | |
| 220 | def _create_instance(self, handle: core.BNBasicBlockHandle) -> 'BasicBlock': |
| 221 | """Internal method used to instantiate child instances""" |
| 222 | return BasicBlock(handle, self.view) |
| 223 | |
| 224 | @property |
| 225 | def instruction_count(self) -> int: |
no test coverage detected