Typo: fix function name in kotlinToResolvedCallTransformer
This commit is contained in:
committed by
Mikhail Zarechenskiy
parent
d18c55a412
commit
8f22d43d01
+2
-2
@@ -678,13 +678,13 @@ class NewResolvedCallImpl<D : CallableDescriptor>(
|
|||||||
?: substituted
|
?: substituted
|
||||||
}
|
}
|
||||||
|
|
||||||
calculateExpedtedTypeForSamConvertedArgumentMap(substitutor)
|
calculateExpectedTypeForSamConvertedArgumentMap(substitutor)
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getExpectedTypeForSamConvertedArgument(valueArgument: ValueArgument): UnwrappedType? =
|
fun getExpectedTypeForSamConvertedArgument(valueArgument: ValueArgument): UnwrappedType? =
|
||||||
expedtedTypeForSamConvertedArgumentMap?.get(valueArgument)
|
expedtedTypeForSamConvertedArgumentMap?.get(valueArgument)
|
||||||
|
|
||||||
private fun calculateExpedtedTypeForSamConvertedArgumentMap(substitutor: NewTypeSubstitutor?) {
|
private fun calculateExpectedTypeForSamConvertedArgumentMap(substitutor: NewTypeSubstitutor?) {
|
||||||
if (resolvedCallAtom.argumentsWithConversion.isEmpty()) return
|
if (resolvedCallAtom.argumentsWithConversion.isEmpty()) return
|
||||||
|
|
||||||
expedtedTypeForSamConvertedArgumentMap = hashMapOf()
|
expedtedTypeForSamConvertedArgumentMap = hashMapOf()
|
||||||
|
|||||||
Reference in New Issue
Block a user