From cfe78ad05c2b39d53623b17cd84b638788c38cc9 Mon Sep 17 00:00:00 2001 From: Konstantin Anisimov Date: Thu, 18 May 2017 18:12:05 +0700 Subject: [PATCH] One more lateinit --- .../backend/konan/lower/InlineConstructorsTransformation.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/InlineConstructorsTransformation.kt b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/InlineConstructorsTransformation.kt index ab6e213e8b0..e31cc602eea 100644 --- a/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/InlineConstructorsTransformation.kt +++ b/backend.native/compiler/ir/backend.native/src/org/jetbrains/kotlin/backend/konan/lower/InlineConstructorsTransformation.kt @@ -37,14 +37,13 @@ import org.jetbrains.kotlin.ir.visitors.transformChildrenVoid import org.jetbrains.kotlin.name.FqName import org.jetbrains.kotlin.resolve.descriptorUtil.fqNameSafe -private val inlineConstructor = FqName("konan.internal.InlineConstructor") - //-----------------------------------------------------------------------------// internal class InlineConstructorsTransformation(val context: Context): IrElementTransformerVoidWithContext() { private val deserializer = DeserializerDriver(context) val substituteMap = mutableMapOf() + private val inlineConstructor by lazy { FqName("konan.internal.InlineConstructor") } //-------------------------------------------------------------------------//