``prepare_to_copy_block`` sets up state when copying a function in preparation of copying the instructions from the block ``src`` :param LowLevelILBasicBlock src: block about to be copied from
(self, src: 'LowLevelILBasicBlock')
| 5937 | core.BNPrepareToCopyLowLevelILFunction(self.handle, src.handle) |
| 5938 | |
| 5939 | def prepare_to_copy_block(self, src: 'LowLevelILBasicBlock'): |
| 5940 | """ |
| 5941 | ``prepare_to_copy_block`` sets up state when copying a function in preparation |
| 5942 | of copying the instructions from the block ``src`` |
| 5943 | |
| 5944 | :param LowLevelILBasicBlock src: block about to be copied from |
| 5945 | """ |
| 5946 | core.BNPrepareToCopyLowLevelILBasicBlock(self.handle, src.handle) |
| 5947 | |
| 5948 | def get_label_for_source_instruction(self, i: InstructionIndex) -> Optional['LowLevelILLabel']: |
| 5949 | """ |