account for the receiver in property mangling
This commit is contained in:
committed by
alexander-gorshenev
parent
ff27066502
commit
c944ea78c1
+2
-1
@@ -168,7 +168,8 @@ internal val PropertyDescriptor.symbolName: String
|
||||
val containingDeclarationPart = containingDeclaration.fqNameSafe.let {
|
||||
if (it.isRoot) "" else "$it."
|
||||
}
|
||||
return "kprop:$containingDeclarationPart$name"
|
||||
val extensionReceiverPart = this.extensionReceiverParameter?.let { "${it.type}." } ?: ""
|
||||
return "kprop:$containingDeclarationPart$extensionReceiverPart$name"
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user