``prepare_to_copy_function`` sets up state in this LLIL function in preparation of copying instructions from ``src`` :param LowLevelILFunction src: function about to be copied from
(self, src: 'LowLevelILFunction')
| 5928 | core.BNGenerateLowLevelILSSAForm(self.handle) |
| 5929 | |
| 5930 | def prepare_to_copy_function(self, src: 'LowLevelILFunction'): |
| 5931 | """ |
| 5932 | ``prepare_to_copy_function`` sets up state in this LLIL function in preparation |
| 5933 | of copying instructions from ``src`` |
| 5934 | |
| 5935 | :param LowLevelILFunction src: function about to be copied from |
| 5936 | """ |
| 5937 | core.BNPrepareToCopyLowLevelILFunction(self.handle, src.handle) |
| 5938 | |
| 5939 | def prepare_to_copy_block(self, src: 'LowLevelILBasicBlock'): |
| 5940 | """ |