Alejandro Serrano Mena
12/22/2022, 10:28 AM2.0-SNAPSHOT
version, which is available in the snapshots repository
maven("<https://oss.sonatype.org/content/repositories/snapshots>")
any further feedback about this change is welcomesimon.vergauwen
12/22/2022, 10:32 AMphldavies
12/22/2022, 10:36 AMcarbaj0
12/22/2022, 12:12 PMSymbol is declared in module 'jdk.compiler' which does not export package 'com.sun.tools.javac.jvm'
, but i don´t know if i do something wrong hahacarbaj0
12/22/2022, 12:13 PMcarbaj0
12/22/2022, 12:15 PMid 'org.jetbrains.kotlin.jvm' version '1.8.0-RC' apply false
id 'com.google.devtools.ksp' version '1.8.0-RC-1.0.8' apply(false)
should i use old versions like 1.7.20?simon.vergauwen
12/22/2022, 12:24 PMcarbaj0
12/22/2022, 12:29 PMcom.sun.tools.javac.jvm.Items
instead of my own 🥲than_
12/22/2022, 3:07 PM@optics
data class Foo(
val bar: Bar?
){
companion object
}
@optics
data class Bar(
val baz: String
){
companion object
}
...
Foo.bar.baz.set(foo, "")
this does not generate the .baz
correctly. It seems that generation of optics on nullable properties broke.simon.vergauwen
12/22/2022, 3:08 PM2.0.0
.
It became Foo.bar.notNull.baz.set(foo, "")
than_
12/22/2022, 3:09 PM2.0.0-SNAPSHOT
. Let me quickly checkthan_
12/22/2022, 3:11 PM