Parent for thisReceiver of IrLazyClass is the corresponding class

Fixes issue in Kotlin/Native.
This commit is contained in:
Dmitry Petrov
2018-12-19 12:26:35 +03:00
parent c5783c5abd
commit e5d946a96c
@@ -72,7 +72,7 @@ class IrLazyClass(
override var thisReceiver: IrValueParameter? by lazyVar {
typeTranslator.buildWithScope(this) {
descriptor.thisAsReceiverParameter.generateReceiverParameterStub()
descriptor.thisAsReceiverParameter.generateReceiverParameterStub().apply { parent = this@IrLazyClass }
}
}