We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff3be8e commit 93358bbCopy full SHA for 93358bb
1 file changed
symbols/argument.py
@@ -15,6 +15,7 @@
15
from .var import SymbolVAR
16
from api.config import OPTIONS
17
from api.constants import SCOPE
18
+from api.constants import CLASS
19
20
21
class SymbolARGUMENT(Symbol):
@@ -56,7 +57,7 @@ def type_(self):
56
57
58
@property
59
def class_(self):
- return self.value.class_
60
+ return getattr(self.value, 'class_', CLASS.unknown)
61
62
63
def byref(self):
0 commit comments