KaFunctionCall
KaFunctionCall represents a call to a function within Kotlin code. This includes calls to regular functions, constructors, constructors of super classes, and annotations.
Hierarchy
Inherits KaCallableMemberCall.
Members
valueArgumentMapping: Map<KtExpression, KaVariableSignature<KaValueParameterSymbol>>A mapping from the call's argument expressions to their associated parameter symbols in a stable order. In case of
varargparameters, multiple arguments may be mapped to the sameKaValueParameterSymbolcontextArgumentMapping: Map<KtExpression, KaVariableSignature<KaContextParameterSymbol>>A mapping from the call's explicit context argument expressions to their associated context parameter symbols in a stable order.
combinedArgumentMapping: Map<KtExpression, KaVariableSignature<KaParameterSymbol>>A combined mapping from the call's argument expressions to their associated parameter symbols in a stable order. This includes both
valueArgumentMappingandcontextArgumentMapping. In case ofvarargparameters, multiple arguments may be mapped to the sameKaValueParameterSymbol.