diff options
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index 8a400c1e..1d7feb71 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -778,7 +778,11 @@ class HighLevelILInstruction(BaseILInstruction): @property def operands(self) -> List[HighLevelILOperandType]: - """Operands for the instruction""" + """ + Operands for the instruction + + Consider using more specific APIs for ``src``, ``dest``, ``params``, etc where appropriate. + """ return list(map(lambda x: x[1], self.detailed_operands)) @property |
