summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 4ea2aa8f..da055cd4 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -27,6 +27,7 @@ from enum import Enum
# Binary Ninja components
from . import _binaryninjacore as core
from .enums import HighLevelILOperation, DataFlowQueryOption, FunctionGraphType
+from . import decorators
from . import function
from . import binaryview
from . import architecture
@@ -2046,11 +2047,12 @@ ILInstruction = {
}
+@decorators.deprecated
class HighLevelILExpr:
"""
``class HighLevelILExpr`` hold the index of IL Expressions.
- .. note:: Deprecated. Use ExpressionIndex instead
+ .. note:: Use ExpressionIndex instead
"""
def __init__(self, index: ExpressionIndex):
self._index = index