https://kotlinlang.org logo
#compose
Title
# compose
z

Zach Klippenstein (he/him) [MOD]

05/31/2020, 6:07 PM
I’m still trying to come up with a reproducer, with dev12 i’m starting to get this compiler error:
Copy code
e: kotlin.UninitializedPropertyAccessException: Parent not initialized: org.jetbrains.kotlin.ir.declarations.impl.IrValueParameterImpl@e27c4d
Posting eagerly just in case @Leland Richardson [G] already fixed this one too 😜
l

Leland Richardson [G]

05/31/2020, 6:09 PM
I haven't, but I think a bug for this just for posted in the past few days
👍 1
Got posted*
z

Zach Klippenstein (he/him) [MOD]

05/31/2020, 6:14 PM
Yea that repro code definitely looks like what i’ve got
Also, TIL that google search does not index this issue tracker, at least within a couple days.
l

Leland Richardson [G]

06/02/2020, 7:21 PM
k

Kazemihabib1996

06/12/2020, 8:11 AM
@Leland Richardson [G] I got the same error when I converted
val anchors = listOf(minPx, maxPx, maxPx / 2)
val flingConfig = AnchorsFlingConfig(anchors.map { it.value })
TO:
val flingConfig = AnchorsFlingConfig(anchors.map(Px::value))
I use dev13