e8089cc461
#KT-2834 Fixed
7 lines
114 B
Kotlin
7 lines
114 B
Kotlin
private enum class MethodKind {
|
|
INSTANCE
|
|
STATIC
|
|
}
|
|
|
|
fun MethodKind.hasThis() = this == MethodKind.INSTANCE
|