summaryrefslogtreecommitdiff
path: root/python/highlevelil.py
diff options
context:
space:
mode:
authorMaja Kądziołka <maya@compilercrim.es>2023-05-26 16:48:28 +0200
committerPeter LaFosse <peter@vector35.com>2023-05-26 13:43:20 -0400
commit441084f86fcafbd3d4bdd8414cf3d801e3816844 (patch)
tree557fa6208585037dbf1caf1bd4bdbaefe553692d /python/highlevelil.py
parent0c63f927ead0f78184a7526ce1c707a88e7f52ad (diff)
param_vars doesn't exist, properly refer to parameter_vars
Diffstat (limited to 'python/highlevelil.py')
-rw-r--r--python/highlevelil.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/highlevelil.py b/python/highlevelil.py
index 676d1508..2a7d2fc7 100644
--- a/python/highlevelil.py
+++ b/python/highlevelil.py
@@ -2785,7 +2785,7 @@ class HighLevelILFunction:
@property
def vars(self) -> Union[List["variable.Variable"], List["mediumlevelil.SSAVariable"]]:
- """This gets just the HLIL variables - you may be interested in the union of `HighLevelIlFunction.source_function.param_vars` and `HighLevelIlFunction.aliased_vars` as well for all the variables used in the function"""
+ """This gets just the HLIL variables - you may be interested in the union of `HighLevelIlFunction.source_function.parameter_vars` and `HighLevelIlFunction.aliased_vars` as well for all the variables used in the function"""
if self.source_function is None:
return []
@@ -2811,7 +2811,7 @@ class HighLevelILFunction:
@property
def aliased_vars(self) -> List["variable.Variable"]:
- """This returns a list of Variables that are taken reference to and used elsewhere. You may also wish to consider `HighLevelIlFunction.vars` and `HighLevelIlFunction.source_function.param_vars`"""
+ """This returns a list of Variables that are taken reference to and used elsewhere. You may also wish to consider `HighLevelIlFunction.vars` and `HighLevelIlFunction.source_function.parameter_vars`"""
if self.source_function is None:
return []
@@ -2836,7 +2836,7 @@ class HighLevelILFunction:
@property
def ssa_vars(self) -> List["mediumlevelil.SSAVariable"]:
- """This gets just the HLIL SSA variables - you may be interested in the union of `HighLevelIlFunction.source_function.param_vars` and `HighLevelIlFunction.aliased_vars` for all the variables used in the function"""
+ """This gets just the HLIL SSA variables - you may be interested in the union of `HighLevelIlFunction.source_function.parameter_vars` and `HighLevelIlFunction.aliased_vars` for all the variables used in the function"""
if self.source_function is None:
return []