[NI] Minor. Clarified type for arguments from lambda

This commit is contained in:
Stanislav Erokhin
2017-06-23 04:27:56 +03:00
committed by Mikhail Zarechenskiy
parent 4848f8e3da
commit 1bc68e073d
3 changed files with 8 additions and 6 deletions
@@ -32,7 +32,7 @@ interface KotlinResolutionCallbacks {
receiverType: UnwrappedType?,
parameters: List<UnwrappedType>,
expectedReturnType: UnwrappedType? // null means, that return type is not proper i.e. it depends on some type variables
): List<KotlinCallArgument>
): List<SimpleKotlinCallArgument>
// todo this is hack for some client which try to read ResolvedCall from trace before all calls completed
fun bindStubResolvedCallForCandidate(candidate: KotlinResolutionCandidate)