KaCall
KaCall represents a call within Kotlin code — function calls, property accesses, and other invocations — through the legacy hierarchy that grew out of the KtElement.resolveToCall(): KaCallInfo? API.
The transitional types KaFunctionCall, KaVariableAccessCall, KaAnnotationCall, KaDelegatedConstructorCall, KaCompoundVariableAccessCall, and KaCompoundArrayAccessCall still inherit KaCall so existing callers keep compiling. New code reaches for the same types via KaSimpleCall/KaMultiCall instead.
24 August 2026