00821bbc63
They are a bit redundant, but it needs additional work to be done to avoid them
13 lines
666 B
Kotlin
Vendored
13 lines
666 B
Kotlin
Vendored
// KT-9078 (NPE in control flow analysis); EA-71535
|
|
abstract class KFunctionKt9005WorkAround<out R: Any?>(private val _functionInstance: Function<R>) {
|
|
private val _reflectedFunction: kotlin.reflect.KFunction<R> = _functionInstance.<!UNRESOLVED_REFERENCE!>reflect<!>() ?: throw IllegalStateException("")
|
|
|
|
private val _parameters: List<kotlin.reflect.KParameter> = run {
|
|
<!ARGUMENT_TYPE_MISMATCH!>_functionInstance.javaClass.methods.first().<!UNRESOLVED_REFERENCE!>parameters<!>.map {
|
|
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>object<!> : kotlin.reflect.KParameter {
|
|
override val index: Int = 0
|
|
}
|
|
}<!>
|
|
}
|
|
}
|