File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -1204,6 +1204,7 @@ class CppVariable(_CppVariable):
1204
1204
* ``extern`` - True if its an extern, False if not
1205
1205
* ``parent`` - If not None, either the class this is a property of, or the
1206
1206
method this variable is a parameter in
1207
+ * ``access`` - Anything in supportedAccessSpecifier
1207
1208
"""
1208
1209
1209
1210
Vars = []
@@ -1320,6 +1321,7 @@ def __str__(self):
1320
1321
"desc" ,
1321
1322
"line_number" ,
1322
1323
"extern" ,
1324
+ "access" ,
1323
1325
]
1324
1326
cpy = dict ((k , v ) for (k , v ) in list (self .items ()) if k in keys_white_list )
1325
1327
if "array_size" in self :
@@ -3382,6 +3384,7 @@ def _evaluate_stack(self, token=None):
3382
3384
else :
3383
3385
atype ["raw_type" ] = ns + atype ["type" ]
3384
3386
3387
+ atype ["access" ] = self .curAccessSpecifier
3385
3388
if self .curClass :
3386
3389
klass = self .classes [self .curClass ]
3387
3390
klass ["using" ][alias ] = atype
You can’t perform that action at this time.
0 commit comments