summaryrefslogtreecommitdiff
path: root/python/mediumlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/mediumlevelil.py')
-rw-r--r--python/mediumlevelil.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py
index feca0937..c837aa42 100644
--- a/python/mediumlevelil.py
+++ b/python/mediumlevelil.py
@@ -885,3 +885,7 @@ class MediumLevelILBasicBlock(basicblock.BasicBlock):
return self.il_function[idx + self.start]
else:
return self.il_function[self.end + idx]
+
+ def _create_instance(self, view, handle):
+ """Internal method by super to instantiante child instances"""
+ return MediumLevelILBasicBlock(view, handle, self.il_function)