Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e6bfb0d

Browse files
committed
Fix qualified name stubbing for nested types
1 parent 8cbdd30 commit e6bfb0d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

csharp/ql/src/Stubs/Stubs.qll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ private string stubQualifiedNamePrefix(ValueOrRefType t) {
323323
else
324324
if t.getParent() instanceof Namespace
325325
then result = t.getDeclaringNamespace().getQualifiedName() + "."
326-
else result = t.getDeclaringType().getQualifiedName() + "."
326+
else result = stubClassName(t.getDeclaringType()) + "."
327327
}
328328

329329
language[monotonicAggregates]

0 commit comments

Comments
 (0)