Does the "hidden classes" feature of JVM 15 have p...
# announcements
r
Does the "hidden classes" feature of JVM 15 have potential improve Kotlin on the JVM?
e
why would it? Kotlin doesn't do dynamic class generation at runtime
r
I remember reading something about how they can improve lambdas in Java (I don't remember the details), and I was wondering if the same held true for Kotlin.
e
Kotlin lambdas don't use InvokeDynamic - they're compiled to classes (except inline)
i
I believe there are no performance benefits
e
well, the ability to inject nestmates seems like it could reduce the need for bridge methods
but kotlin doesn't use nestmates yet either, so 🤷
r
Cool, thanks for humoring my wondering.