Title
m

mg6maciej

03/10/2017, 5:51 PM
Don't see any reason why Kotlin reflection shouldn't work. Java for sure won't.
s

spierce7

03/10/2017, 6:52 PM
I haven't used Kotlin reflection much yet due to it's very large library
How much does Kotlin reflection overlap java reflection?
m

miha-x64

03/11/2017, 8:04 PM
Kotlin Reflection on JVM back-end is (probably) based on Java reflection and annotations like @Metadata, but Kotlin-native Reflection can't have anything in common with Java reflection.
m

mg6maciej

03/11/2017, 8:09 PM
Yes, there will be completely separate implementation for native. I would expect all the APIs we can use on JVM will be available, except of course
.javaClass
,
::class.java
and similar stuff.