Fix qualified name stubbing for nested types

This commit is contained in:
Tamas Vajk
2021-04-16 14:11:35 +02:00
parent 8cbdd30e1e
commit e6bfb0d1d2

View File

@@ -323,7 +323,7 @@ private string stubQualifiedNamePrefix(ValueOrRefType t) {
else
if t.getParent() instanceof Namespace
then result = t.getDeclaringNamespace().getQualifiedName() + "."
else result = t.getDeclaringType().getQualifiedName() + "."
else result = stubClassName(t.getDeclaringType()) + "."
}
language[monotonicAggregates]