diff options
| author | Jordan Wiens <jordan@psifertex.com> | 2019-12-12 13:22:31 -0500 |
|---|---|---|
| committer | Jordan Wiens <jordan@psifertex.com> | 2019-12-14 10:41:29 -0500 |
| commit | deb08e176008df25335557a95ceb73b24e2355ce (patch) | |
| tree | 8890200e0cfda8ac83b5143597d693bb7b181164 /python/function.py | |
| parent | 577e05b7dcce6c19e9145d6c371de3237e903b45 (diff) | |
function variable documentation improvements
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/python/function.py b/python/function.py index b99d7da0..fe0d0fa2 100644 --- a/python/function.py +++ b/python/function.py @@ -537,7 +537,7 @@ class Variable(object): @property def function(self): - """ """ + """Function where the variable is defined""" return self._function @function.setter @@ -546,7 +546,7 @@ class Variable(object): @property def source_type(self): - """ """ + """:class:`~enums.VariableSourceType`""" return self._source_type @source_type.setter @@ -564,7 +564,7 @@ class Variable(object): @property def storage(self): - """ """ + """Stack offset for StackVariableSourceType, register index for RegisterVariableSourceType""" return self._storage @storage.setter @@ -582,7 +582,7 @@ class Variable(object): @property def name(self): - """ """ + """Name of the variable""" return self._name @name.setter |
