Return Kotlin fields and methods through KotlinShortNameCache
#KT-12205 Fixed
This commit is contained in:
committed by
Dmitry Jemerov
parent
b06bdcef75
commit
18feb8f622
@@ -0,0 +1,27 @@
|
||||
|
||||
fun topLevelFunction(){
|
||||
|
||||
}
|
||||
|
||||
object B1 {
|
||||
@JvmStatic
|
||||
fun staticMethodOfObject() {
|
||||
}
|
||||
|
||||
fun nonStaticMethodOfObject() {
|
||||
}
|
||||
}
|
||||
|
||||
class C1 {
|
||||
fun methodOfClass() {
|
||||
}
|
||||
|
||||
companion object {
|
||||
@JvmStatic
|
||||
fun staticMethodOfCompanion() {
|
||||
}
|
||||
|
||||
fun nonStaticMethodOfCompanion() {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user