diff options
| -rw-r--r-- | python/highlevelil.py | 6 | ||||
| -rw-r--r-- | python/mediumlevelil.py | 6 |
2 files changed, 6 insertions, 6 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 [] diff --git a/python/mediumlevelil.py b/python/mediumlevelil.py index f2181ad6..f3c8c538 100644 --- a/python/mediumlevelil.py +++ b/python/mediumlevelil.py @@ -3536,7 +3536,7 @@ class MediumLevelILFunction: @property def vars(self) -> List['variable.Variable']: - """This gets just the MLIL variables - you may be interested in the union of `MediumLevelIlFunction.aliased_vars` and `MediumLevelIlFunction.source_function.param_vars` for all the variables used in the function""" + """This gets just the MLIL variables - you may be interested in the union of `MediumLevelIlFunction.aliased_vars` and `MediumLevelIlFunction.source_function.parameter_vars` for all the variables used in the function""" if self.source_function is None: return [] @@ -3568,7 +3568,7 @@ class MediumLevelILFunction: @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 `MediumLevelIlFunction.vars` and `MediumLevelIlFunction.source_function.param_vars`""" + """This returns a list of Variables that are taken reference to and used elsewhere. You may also wish to consider `MediumLevelIlFunction.vars` and `MediumLevelIlFunction.source_function.parameter_vars`""" if self.source_function is None: return [] @@ -3593,7 +3593,7 @@ class MediumLevelILFunction: @property def ssa_vars(self) -> List[SSAVariable]: - """This gets just the MLIL SSA variables - you may be interested in the union of `MediumLevelIlFunction.aliased_vars` and `MediumLevelIlFunction.source_function.param_vars` for all the variables used in the function""" + """This gets just the MLIL SSA variables - you may be interested in the union of `MediumLevelIlFunction.aliased_vars` and `MediumLevelIlFunction.source_function.parameter_vars` for all the variables used in the function""" if self.source_function is None: return [] |
