7 lines
123 B
Kotlin
Vendored
7 lines
123 B
Kotlin
Vendored
private enum class MethodKind {
|
|
INSTANCE,
|
|
STATIC
|
|
}
|
|
|
|
private fun MethodKind.hasThis() = this == MethodKind.INSTANCE
|