f0f2f67024
Use-site substitution override happens in situations like this:
```
interface List<A> { fun get(i: Int): A }
fun take(list: List<String>) {
list.get(10) // this call
}
```
We want to have those overrides unwrapped, because we don't want
to deal with a different KtSymbol for each possible use-site
^KT-50862 Fixed
37 lines
1.2 KiB
Plaintext
Vendored
37 lines
1.2 KiB
Plaintext
Vendored
KtSuccessCallInfo:
|
|
call = KtSimpleFunctionCall:
|
|
isImplicitInvoke = true
|
|
partiallyAppliedSymbol = KtPartiallyAppliedSymbol:
|
|
dispatchReceiver = KtExplicitReceiverValue:
|
|
expression = x
|
|
isSafeNavigation = false
|
|
extensionReceiver = null
|
|
signature = KtFunctionLikeSignature:
|
|
receiverType = null
|
|
returnType = kotlin.Unit
|
|
symbol = kotlin/Function2.invoke(<dispatch receiver>: kotlin.Function2<P1, P2, R>, p1: P1, p2: P2): R
|
|
valueParameters = [
|
|
KtVariableLikeSignature:
|
|
name = a
|
|
receiverType = null
|
|
returnType = @R|kotlin.ParameterName|(name = String(a)) kotlin.Int
|
|
symbol = p1: P1,
|
|
KtVariableLikeSignature:
|
|
name = p2
|
|
receiverType = null
|
|
returnType = kotlin.String
|
|
symbol = p2: P2
|
|
]
|
|
argumentMapping = {
|
|
1 -> (KtVariableLikeSignature:
|
|
name = a
|
|
receiverType = null
|
|
returnType = @R|kotlin.ParameterName|(name = String(a)) kotlin.Int
|
|
symbol = p1: P1),
|
|
"" -> (KtVariableLikeSignature:
|
|
name = p2
|
|
receiverType = null
|
|
returnType = kotlin.String
|
|
symbol = p2: P2)
|
|
}
|