@@ -54,7 +54,7 @@ class NotFoundClasses(private val storageManager: StorageManager, private val mo
54
54
private val typeAliases = storageManager.createMemoizedFunction<ClassRequest , TypeAliasDescriptor > { request ->
55
55
computeClassifier(request, {
56
56
owner, name, isInner, numberOfTypeParametersCount ->
57
- MockTypeAliasDescriptor (storageManager, owner, name, numberOfTypeParametersCount)
57
+ MockTypeAliasDescriptor (storageManager, owner, name, isInner, numberOfTypeParametersCount)
58
58
})
59
59
}
60
60
@@ -115,6 +115,7 @@ class NotFoundClasses(private val storageManager: StorageManager, private val mo
115
115
storageManager : StorageManager ,
116
116
containingDeclaration : DeclarationDescriptor ,
117
117
name : Name ,
118
+ private val isInner : Boolean ,
118
119
numberOfDeclaredTypeParameters : Int
119
120
) : AbstractTypeAliasDescriptor(containingDeclaration, Annotations .EMPTY , name, SourceElement .NO_SOURCE , Visibilities .PUBLIC ) {
120
121
init {
@@ -136,6 +137,8 @@ class NotFoundClasses(private val storageManager: StorageManager, private val mo
136
137
override val classDescriptor: ClassDescriptor ?
137
138
get() = expandedType.constructor .declarationDescriptor as ? ClassDescriptor
138
139
140
+ override fun isInner (): Boolean = isInner
141
+
139
142
override fun substitute (substitutor : TypeSubstitutor ) = this
140
143
141
144
override fun toString () = " MockTypeAliasDescriptor[$fqNameUnsafe ]"
0 commit comments