Internal method by super to instantiate child instances
(self, handle: core.BNBasicBlockHandle)
| 4774 | return self.il_function[self.end + idx] |
| 4775 | |
| 4776 | def _create_instance(self, handle: core.BNBasicBlockHandle): |
| 4777 | """Internal method by super to instantiate child instances""" |
| 4778 | return HighLevelILBasicBlock(handle, self.il_function, self.view) |
| 4779 | |
| 4780 | def __hash__(self): |
| 4781 | return hash((self.start, self.end, self.il_function)) |
nothing calls this directly
no test coverage detected