summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py24
1 files changed, 12 insertions, 12 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index dc983362..dd49f10a 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -466,33 +466,33 @@ class LowLevelILInstruction:
def __repr__(self):
return "<il: %s>" % str(self)
- def __eq__(self, other):
- if not isinstance(other, self.__class__):
+ def __eq__(self, other:'LowLevelILInstruction') -> bool:
+ if not isinstance(other, LowLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index == other.expr_index
- def __ne__(self, other):
- if not isinstance(other, self.__class__):
+ def __ne__(self, other:'LowLevelILInstruction') -> bool:
+ if not isinstance(other, LowLevelILInstruction):
return NotImplemented
return not (self == other)
- def __lt__(self, other):
- if not isinstance(other, self.__class__):
+ def __lt__(self, other:'LowLevelILInstruction') -> bool:
+ if not isinstance(other, LowLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index < other.expr_index
- def __le__(self, other):
- if not isinstance(other, self.__class__):
+ def __le__(self, other:'LowLevelILInstruction') -> bool:
+ if not isinstance(other, LowLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index <= other.expr_index
- def __gt__(self, other):
- if not isinstance(other, self.__class__):
+ def __gt__(self, other:'LowLevelILInstruction') -> bool:
+ if not isinstance(other, LowLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index > other.expr_index
- def __ge__(self, other):
- if not isinstance(other, self.__class__):
+ def __ge__(self, other:'LowLevelILInstruction') -> bool:
+ if not isinstance(other, LowLevelILInstruction):
return NotImplemented
return self.function == other.function and self.expr_index >= other.expr_index