summaryrefslogtreecommitdiff
path: root/python/function.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/function.py')
-rw-r--r--python/function.py8
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