summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
Diffstat (limited to 'python')
-rw-r--r--python/highlevelil.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 570df465..5ec4f1bf 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -400,11 +400,11 @@ class HighLevelILInstruction:
return self.core_instr.address
@property
- def source_operand(self) -> int:
- return self.core_instr.source_operand
+ def source_operand(self) -> ExpressionIndex:
+ return ExpressionIndex(self.core_instr.source_operand)
@property
- def core_operands(self) -> Any:
+ def core_operands(self) -> OperandsType:
return self.core_instr.operands
@property