diff options
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py index 873c7fc7..43a5c68e 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -45,6 +45,7 @@ from .commonil import ( BaseILInstruction, Tailcall, Syscall, Localcall, Comparison, Signed, UnaryOperation, BinaryOperation, SSA, Phi, Loop, ControlFlow, Memory, Constant, Arithmetic, DoublePrecision, Terminal, FloatingPoint, Intrinsic, Return ) +from . import deprecation TokenList = List['function.InstructionTextToken'] LinesType = Generator['function.DisassemblyTextLine', None, None] @@ -2092,13 +2093,14 @@ ILInstruction = { } -@decorators.deprecated class HighLevelILExpr: """ ``class HighLevelILExpr`` hold the index of IL Expressions. .. note:: Use ExpressionIndex instead """ + + @deprecation.deprecated(details='HighLevelILExpr is deprecated. Use ExpressionIndex instead') def __init__(self, index: ExpressionIndex): self._index = index |
