[NI] Introduced ResolutionAtom's
Introduced new model for resolution result: tree of ResolvedAtoms. Moved all postprocessing for arguments to front-end module. Do not create freshDescriptor -- use freshTypeSubstitutor directly. Removed Candidates for variables+invoke. Add lazy way for argument analysis -- do not analyze all arguments if we have subtyping error in first argument, but if we want report all errors, then all arguments checks will be performed. Future improvements: - optimize constraint system usage inside ResolutionCandidate - improve constraint system API - improve diagnostic handlers
This commit is contained in:
@@ -21,7 +21,6 @@ import org.jetbrains.kotlin.resolve.calls.components.KotlinResolutionCallbacks
|
||||
import org.jetbrains.kotlin.resolve.calls.components.NewOverloadingConflictResolver
|
||||
import org.jetbrains.kotlin.resolve.calls.context.CheckArgumentTypesMode
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.resolve.calls.tasks.ExplicitReceiverKind
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.*
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import java.lang.UnsupportedOperationException
|
||||
@@ -40,7 +39,7 @@ class KotlinCallResolver(
|
||||
kotlinCall: KotlinCall,
|
||||
expectedType: UnwrappedType?,
|
||||
factoryProviderForInvoke: CandidateFactoryProviderForInvoke<KotlinResolutionCandidate>
|
||||
): Collection<ResolvedKotlinCall> {
|
||||
): CallResolutionResult {
|
||||
kotlinCall.checkCallInvariants()
|
||||
|
||||
val candidateFactory = SimpleCandidateFactory(callComponents, scopeTower, kotlinCall)
|
||||
@@ -56,43 +55,33 @@ class KotlinCallResolver(
|
||||
|
||||
val candidates = towerResolver.runResolve(scopeTower, processor, useOrder = kotlinCall.callKind != KotlinCallKind.UNSUPPORTED)
|
||||
|
||||
return choseMostSpecific(resolutionCallbacks, expectedType, candidates)
|
||||
return choseMostSpecific(candidateFactory, resolutionCallbacks, expectedType, candidates)
|
||||
}
|
||||
|
||||
fun resolveGivenCandidates(
|
||||
scopeTower: ImplicitScopeTower,
|
||||
resolutionCallbacks: KotlinResolutionCallbacks,
|
||||
kotlinCall: KotlinCall,
|
||||
expectedType: UnwrappedType?,
|
||||
givenCandidates: Collection<GivenCandidate>
|
||||
): Collection<ResolvedKotlinCall> {
|
||||
): CallResolutionResult {
|
||||
kotlinCall.checkCallInvariants()
|
||||
val candidateFactory = SimpleCandidateFactory(callComponents, scopeTower, kotlinCall)
|
||||
|
||||
val isSafeCall = (kotlinCall.explicitReceiver as? SimpleKotlinCallArgument)?.isSafeCall ?: false
|
||||
|
||||
val resolutionCandidates = givenCandidates.map {
|
||||
SimpleKotlinResolutionCandidate(callComponents,
|
||||
it.scopeTower,
|
||||
kotlinCall,
|
||||
if (it.dispatchReceiver == null) ExplicitReceiverKind.NO_EXPLICIT_RECEIVER else ExplicitReceiverKind.DISPATCH_RECEIVER,
|
||||
it.dispatchReceiver?.let { ReceiverExpressionKotlinCallArgument(it, isSafeCall) },
|
||||
null,
|
||||
it.descriptor,
|
||||
it.knownTypeParametersResultingSubstitutor,
|
||||
listOf()
|
||||
)
|
||||
}
|
||||
val resolutionCandidates = givenCandidates.map { candidateFactory.createCandidate(it).forceResolution() }
|
||||
val candidates = towerResolver.runWithEmptyTowerData(KnownResultProcessor(resolutionCandidates),
|
||||
TowerResolver.SuccessfulResultCollector(),
|
||||
useOrder = true)
|
||||
return choseMostSpecific(resolutionCallbacks, expectedType, candidates)
|
||||
return choseMostSpecific(candidateFactory, resolutionCallbacks, expectedType, candidates)
|
||||
}
|
||||
|
||||
private fun choseMostSpecific(
|
||||
candidateFactory: SimpleCandidateFactory,
|
||||
resolutionCallbacks: KotlinResolutionCallbacks,
|
||||
expectedType: UnwrappedType?,
|
||||
candidates: Collection<KotlinResolutionCandidate>
|
||||
): Collection<ResolvedKotlinCall> {
|
||||
val isDebuggerContext = (candidates.firstOrNull() ?: return emptyList()).lastCall.scopeTower.isDebuggerContext
|
||||
): CallResolutionResult {
|
||||
val isDebuggerContext = candidateFactory.scopeTower.isDebuggerContext
|
||||
|
||||
val maximallySpecificCandidates = overloadingConflictResolver.chooseMaximallySpecificCandidates(
|
||||
candidates,
|
||||
@@ -100,16 +89,7 @@ class KotlinCallResolver(
|
||||
discriminateGenerics = true, // todo
|
||||
isDebuggerContext = isDebuggerContext)
|
||||
|
||||
val singleResult = maximallySpecificCandidates.singleOrNull()?.let {
|
||||
kotlinCallCompleter.completeCallIfNecessary(it, expectedType, resolutionCallbacks)
|
||||
}
|
||||
if (singleResult != null) {
|
||||
return listOf(singleResult)
|
||||
}
|
||||
|
||||
return maximallySpecificCandidates.map {
|
||||
kotlinCallCompleter.transformWhenAmbiguity(it, resolutionCallbacks)
|
||||
}
|
||||
return kotlinCallCompleter.runCompletion(candidateFactory, maximallySpecificCandidates, expectedType, resolutionCallbacks)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
+28
-23
@@ -21,17 +21,19 @@ import org.jetbrains.kotlin.descriptors.ReceiverParameterDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.checker.KotlinTypeChecker
|
||||
import org.jetbrains.kotlin.utils.SmartList
|
||||
import org.jetbrains.kotlin.utils.addIfNotNull
|
||||
|
||||
// very initial state of component
|
||||
// todo: handle all diagnostic inside DiagnosticReporterByTrackingStrategy
|
||||
// move it to frontend module
|
||||
class AdditionalDiagnosticReporter {
|
||||
|
||||
fun createAdditionalDiagnostics(
|
||||
candidate: SimpleKotlinResolutionCandidate,
|
||||
resultingDescriptor: CallableDescriptor
|
||||
): List<KotlinCallDiagnostic> = reportSmartCasts(candidate, resultingDescriptor)
|
||||
fun reportAdditionalDiagnostics(
|
||||
candidate: ResolvedCallAtom,
|
||||
resultingDescriptor: CallableDescriptor,
|
||||
kotlinDiagnosticsHolder: KotlinDiagnosticsHolder
|
||||
) {
|
||||
reportSmartCasts(candidate, resultingDescriptor, kotlinDiagnosticsHolder)
|
||||
}
|
||||
|
||||
private fun createSmartCastDiagnostic(argument: KotlinCallArgument, expectedResultType: UnwrappedType): SmartCastDiagnostic? {
|
||||
if (argument !is ExpressionKotlinCallArgument) return null
|
||||
@@ -42,7 +44,7 @@ class AdditionalDiagnosticReporter {
|
||||
}
|
||||
|
||||
private fun reportSmartCastOnReceiver(
|
||||
candidate: SimpleKotlinResolutionCandidate,
|
||||
candidate: ResolvedCallAtom,
|
||||
receiver: SimpleKotlinCallArgument?,
|
||||
parameter: ReceiverParameterDescriptor?
|
||||
): SmartCastDiagnostic? {
|
||||
@@ -53,33 +55,36 @@ class AdditionalDiagnosticReporter {
|
||||
|
||||
// todo may be we have smart cast to Int?
|
||||
return smartCastDiagnostic.takeIf {
|
||||
candidate.getCandidateDiagnostics().filterIsInstance<UnsafeCallError>().none {
|
||||
candidate.diagnostics.filterIsInstance<UnsafeCallError>().none {
|
||||
it.receiver == receiver
|
||||
}
|
||||
&&
|
||||
candidate.getCandidateDiagnostics().filterIsInstance<UnstableSmartCast>().none {
|
||||
candidate.diagnostics.filterIsInstance<UnstableSmartCast>().none {
|
||||
it.argument == receiver
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun reportSmartCasts(candidate: SimpleKotlinResolutionCandidate, resultingDescriptor: CallableDescriptor) =
|
||||
SmartList<KotlinCallDiagnostic>().apply {
|
||||
addIfNotNull(reportSmartCastOnReceiver(candidate, candidate.extensionReceiver, resultingDescriptor.extensionReceiverParameter))
|
||||
addIfNotNull(reportSmartCastOnReceiver(candidate, candidate.dispatchReceiverArgument, resultingDescriptor.dispatchReceiverParameter))
|
||||
private fun reportSmartCasts(
|
||||
candidate: ResolvedCallAtom,
|
||||
resultingDescriptor: CallableDescriptor,
|
||||
kotlinDiagnosticsHolder: KotlinDiagnosticsHolder
|
||||
) {
|
||||
kotlinDiagnosticsHolder.addDiagnosticIfNotNull(reportSmartCastOnReceiver(candidate, candidate.extensionReceiverArgument, resultingDescriptor.extensionReceiverParameter))
|
||||
kotlinDiagnosticsHolder.addDiagnosticIfNotNull(reportSmartCastOnReceiver(candidate, candidate.dispatchReceiverArgument, resultingDescriptor.dispatchReceiverParameter))
|
||||
|
||||
for (parameter in resultingDescriptor.valueParameters) {
|
||||
for (argument in candidate.argumentMappingByOriginal[parameter.original]?.arguments ?: continue) {
|
||||
val smartCastDiagnostic = createSmartCastDiagnostic(argument, argument.getExpectedType(parameter)) ?: continue
|
||||
for (parameter in resultingDescriptor.valueParameters) {
|
||||
for (argument in candidate.argumentMappingByOriginal[parameter.original]?.arguments ?: continue) {
|
||||
val smartCastDiagnostic = createSmartCastDiagnostic(argument, argument.getExpectedType(parameter)) ?: continue
|
||||
|
||||
val thereIsUnstableSmartCastError = candidate.getCandidateDiagnostics().filterIsInstance<UnstableSmartCast>().any {
|
||||
it.argument == argument
|
||||
}
|
||||
val thereIsUnstableSmartCastError = candidate.diagnostics.filterIsInstance<UnstableSmartCast>().any {
|
||||
it.argument == argument
|
||||
}
|
||||
|
||||
if (!thereIsUnstableSmartCastError) {
|
||||
add(smartCastDiagnostic)
|
||||
}
|
||||
}
|
||||
if (!thereIsUnstableSmartCastError) {
|
||||
kotlinDiagnosticsHolder.addDiagnostic(smartCastDiagnostic)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+4
-2
@@ -16,11 +16,13 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.components
|
||||
|
||||
import org.jetbrains.kotlin.descriptors.ParameterDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.ValueParameterDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.model.KotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.scopes.receivers.ReceiverValueWithSmartCastInfo
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.checker.intersectWrappedTypes
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
|
||||
internal fun unexpectedArgument(argument: KotlinCallArgument): Nothing =
|
||||
@@ -40,12 +42,12 @@ internal val ReceiverValueWithSmartCastInfo.stableType: UnwrappedType
|
||||
return intersectWrappedTypes(possibleTypes + receiverValue.type)
|
||||
}
|
||||
|
||||
internal fun KotlinCallArgument.getExpectedType(parameter: ValueParameterDescriptor) =
|
||||
internal fun KotlinCallArgument.getExpectedType(parameter: ParameterDescriptor) =
|
||||
if (this.isSpread) {
|
||||
parameter.type.unwrap()
|
||||
}
|
||||
else {
|
||||
parameter.varargElementType?.unwrap() ?: parameter.type.unwrap()
|
||||
parameter.safeAs<ValueParameterDescriptor>()?.varargElementType?.unwrap() ?: parameter.type.unwrap()
|
||||
}
|
||||
|
||||
val ValueParameterDescriptor.isVararg: Boolean get() = varargElementType != null
|
||||
|
||||
+4
-1
@@ -21,7 +21,7 @@ import org.jetbrains.kotlin.builtins.getReturnTypeFromFunctionType
|
||||
import org.jetbrains.kotlin.builtins.isFunctionType
|
||||
import org.jetbrains.kotlin.descriptors.*
|
||||
import org.jetbrains.kotlin.descriptors.annotations.Annotations
|
||||
import org.jetbrains.kotlin.resolve.calls.components.CreateDescriptorWithFreshTypeVariables.createToFreshVariableSubstitutorAndAddInitialConstraints
|
||||
import org.jetbrains.kotlin.resolve.calls.components.CreateFreshVariablesSubstitutor.createToFreshVariableSubstitutorAndAddInitialConstraints
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemOperation
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.FreshVariableNewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ArgumentConstraintPosition
|
||||
@@ -72,6 +72,9 @@ class CallableReferenceCandidate(
|
||||
) : Candidate {
|
||||
override val resultingApplicability = getResultApplicability(diagnostics)
|
||||
override val isSuccessful get() = resultingApplicability.isSuccess
|
||||
|
||||
var freshSubstitutor: FreshVariableNewTypeSubstitutor? = null
|
||||
internal set
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
+37
-27
@@ -21,7 +21,6 @@ import org.jetbrains.kotlin.resolve.calls.context.CheckArgumentTypesMode
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemBuilder
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemOperation
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ConstraintInjector
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ResultTypeResolver
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.SimpleConstraintSystemImpl
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.resolve.calls.results.FlatSignature
|
||||
@@ -30,20 +29,20 @@ import org.jetbrains.kotlin.resolve.calls.results.TypeSpecificityComparator
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.ImplicitScopeTower
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.TowerResolver
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
import org.jetbrains.kotlin.utils.SmartList
|
||||
import org.jetbrains.kotlin.utils.addIfNotNull
|
||||
|
||||
|
||||
class CallableReferenceOverloadConflictResolver(
|
||||
builtIns: KotlinBuiltIns,
|
||||
specificityComparator: TypeSpecificityComparator,
|
||||
statelessCallbacks: KotlinResolutionStatelessCallbacks,
|
||||
constraintInjector: ConstraintInjector,
|
||||
typeResolver: ResultTypeResolver
|
||||
constraintInjector: ConstraintInjector
|
||||
) : OverloadingConflictResolver<CallableReferenceCandidate>(
|
||||
builtIns,
|
||||
specificityComparator,
|
||||
{ it.candidate },
|
||||
{ SimpleConstraintSystemImpl(constraintInjector, typeResolver) },
|
||||
{ SimpleConstraintSystemImpl(constraintInjector, builtIns) },
|
||||
Companion::createFlatSignature,
|
||||
{ null },
|
||||
{ statelessCallbacks.isDescriptorFromSource(it) }
|
||||
@@ -63,39 +62,50 @@ class CallableReferenceResolver(
|
||||
|
||||
fun processCallableReferenceArgument(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
postponedArgument: PostponedCallableReferenceArgument
|
||||
): KotlinCallDiagnostic? {
|
||||
postponedArgument.analyzed = true
|
||||
|
||||
val argument = postponedArgument.argument
|
||||
val expectedType = csBuilder.buildCurrentSubstitutor().safeSubstitute(postponedArgument.expectedType)
|
||||
|
||||
val subLHSCall = argument.lhsResult.safeAs<LHSResult.Expression>()?.lshCallArgument.safeAs<SubKotlinCallArgument>()
|
||||
if (subLHSCall != null) {
|
||||
csBuilder.addInnerCall(subLHSCall.resolvedCall)
|
||||
}
|
||||
resolvedAtom: ResolvedCallableReferenceAtom
|
||||
) {
|
||||
val argument = resolvedAtom.atom
|
||||
val expectedType = resolvedAtom.expectedType?.let { csBuilder.buildCurrentSubstitutor().safeSubstitute(it) }
|
||||
|
||||
val scopeTower = callComponents.statelessCallbacks.getScopeTowerForCallableReferenceArgument(argument)
|
||||
val candidates = runRHSResolution(scopeTower, argument, expectedType) { checkCallableReference ->
|
||||
csBuilder.runTransaction { checkCallableReference(this); false }
|
||||
}
|
||||
val chosenCandidate = when (candidates.size) {
|
||||
0 -> return NoneCallableReferenceCandidates(argument)
|
||||
1 -> candidates.single()
|
||||
else -> return CallableReferenceCandidatesAmbiguity(argument, candidates)
|
||||
val diagnostics = SmartList<KotlinCallDiagnostic>()
|
||||
|
||||
val chosenCandidate = candidates.singleOrNull()
|
||||
if (chosenCandidate != null) {
|
||||
val (toFreshSubstitutor, diagnostic) = with(chosenCandidate) {
|
||||
csBuilder.checkCallableReference(argument, dispatchReceiver, extensionReceiver, candidate,
|
||||
reflectionCandidateType, expectedType, scopeTower.lexicalScope.ownerDescriptor)
|
||||
}
|
||||
diagnostics.addIfNotNull(diagnostic)
|
||||
chosenCandidate.freshSubstitutor = toFreshSubstitutor
|
||||
}
|
||||
val (toFreshSubstitutor, diagnostic) = with(chosenCandidate) {
|
||||
csBuilder.checkCallableReference(argument, dispatchReceiver, extensionReceiver, candidate,
|
||||
reflectionCandidateType, expectedType, scopeTower.lexicalScope.ownerDescriptor)
|
||||
else {
|
||||
if (candidates.isEmpty()) {
|
||||
diagnostics.add(NoneCallableReferenceCandidates(argument))
|
||||
}
|
||||
else {
|
||||
diagnostics.add(CallableReferenceCandidatesAmbiguity(argument, candidates))
|
||||
}
|
||||
}
|
||||
|
||||
postponedArgument.analyzedAndThereIsResult = true
|
||||
postponedArgument.myTypeVariables = toFreshSubstitutor.freshVariables
|
||||
postponedArgument.callableResolutionCandidate = chosenCandidate
|
||||
// todo -- create this inside CallableReferencesCandidateFactory
|
||||
val subKtArguments = listOfNotNull(buildResolvedKtArgument(argument.lhsResult))
|
||||
|
||||
return diagnostic
|
||||
resolvedAtom.setAnalyzedResults(chosenCandidate, subKtArguments, diagnostics)
|
||||
}
|
||||
|
||||
private fun buildResolvedKtArgument(lhsResult: LHSResult): ResolvedAtom? {
|
||||
if (lhsResult !is LHSResult.Expression) return null
|
||||
val lshCallArgument = lhsResult.lshCallArgument
|
||||
return when(lshCallArgument) {
|
||||
is SubKotlinCallArgument -> lshCallArgument.callResult
|
||||
is ExpressionKotlinCallArgument -> ResolvedExpressionAtom(lshCallArgument)
|
||||
else -> unexpectedArgument(lshCallArgument)
|
||||
}
|
||||
}
|
||||
|
||||
private fun runRHSResolution(
|
||||
scopeTower: ImplicitScopeTower,
|
||||
|
||||
+2
-7
@@ -31,6 +31,7 @@ interface KotlinResolutionStatelessCallbacks {
|
||||
fun isHiddenInResolution(descriptor: DeclarationDescriptor, kotlinCall: KotlinCall): Boolean
|
||||
fun isSuperExpression(receiver: SimpleKotlinCallArgument?): Boolean
|
||||
fun getScopeTowerForCallableReferenceArgument(argument: CallableReferenceKotlinCallArgument): ImplicitScopeTower
|
||||
fun getVariableCandidateIfInvoke(functionCall: KotlinCall): KotlinResolutionCandidate?
|
||||
}
|
||||
|
||||
// This components hold state (trace). Work with this carefully.
|
||||
@@ -43,11 +44,5 @@ interface KotlinResolutionCallbacks {
|
||||
expectedReturnType: UnwrappedType? // null means, that return type is not proper i.e. it depends on some type variables
|
||||
): List<SimpleKotlinCallArgument>
|
||||
|
||||
// todo this is hack for some client which try to read ResolvedCall from trace before all calls completed
|
||||
fun bindStubResolvedCallForCandidate(candidate: KotlinResolutionCandidate)
|
||||
|
||||
fun completeCallableReference(callableReferenceArgument: PostponedCallableReferenceArgument,
|
||||
resultTypeParameters: List<UnwrappedType>)
|
||||
|
||||
fun completeCollectionLiteralCalls(collectionLiteralArgument: PostponedCollectionLiteralArgument)
|
||||
fun bindStubResolvedCallForCandidate(candidate: ResolvedCallAtom)
|
||||
}
|
||||
+48
-118
@@ -16,152 +16,82 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.components
|
||||
|
||||
import org.jetbrains.kotlin.descriptors.CallableDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.FunctionDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.NewConstraintSystem
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter.ConstraintSystemCompletionMode
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.NewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ExpectedTypeConstraintPosition
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.returnTypeOrNothing
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.substituteAndApproximateCapturedTypes
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.types.TypeApproximator
|
||||
import org.jetbrains.kotlin.types.TypeApproximatorConfiguration
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.forceResolution
|
||||
import org.jetbrains.kotlin.types.TypeUtils
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.checker.NewCapturedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.contains
|
||||
|
||||
class KotlinCallCompleter(
|
||||
private val additionalDiagnosticReporter: AdditionalDiagnosticReporter,
|
||||
private val postponedArgumentsAnalyzer: PostponedArgumentsAnalyzer,
|
||||
private val kotlinConstraintSystemCompleter: KotlinConstraintSystemCompleter
|
||||
) {
|
||||
|
||||
interface Context {
|
||||
val innerCalls: List<ResolvedKotlinCall.OnlyResolvedKotlinCall>
|
||||
fun buildResultingSubstitutor(): NewTypeSubstitutor
|
||||
val postponedArguments: List<PostponedKotlinCallArgument>
|
||||
val lambdaArguments: List<PostponedLambdaArgument>
|
||||
}
|
||||
|
||||
fun transformWhenAmbiguity(candidate: KotlinResolutionCandidate, resolutionCallbacks: KotlinResolutionCallbacks): ResolvedKotlinCall =
|
||||
toCompletedBaseResolvedCall(candidate.lastCall.constraintSystem.asCallCompleterContext(), candidate, resolutionCallbacks)
|
||||
|
||||
// todo investigate variable+function calls
|
||||
fun completeCallIfNecessary(
|
||||
candidate: KotlinResolutionCandidate,
|
||||
fun runCompletion(
|
||||
factory: SimpleCandidateFactory,
|
||||
candidates: Collection<KotlinResolutionCandidate>,
|
||||
expectedType: UnwrappedType?,
|
||||
resolutionCallbacks: KotlinResolutionCallbacks
|
||||
): ResolvedKotlinCall {
|
||||
resolutionCallbacks.bindStubResolvedCallForCandidate(candidate)
|
||||
val topLevelCall =
|
||||
when (candidate) {
|
||||
is VariableAsFunctionKotlinResolutionCandidate -> candidate.invokeCandidate
|
||||
else -> candidate as SimpleKotlinResolutionCandidate
|
||||
}
|
||||
): CallResolutionResult {
|
||||
val diagnosticHolder = KotlinDiagnosticsHolder.SimpleHolder()
|
||||
if (candidates.isEmpty()) {
|
||||
diagnosticHolder.addDiagnostic(NoneCandidatesCallDiagnostic(factory.kotlinCall))
|
||||
}
|
||||
if (candidates.size > 1) {
|
||||
diagnosticHolder.addDiagnostic(ManyCandidatesCallDiagnostic(factory.kotlinCall, candidates))
|
||||
}
|
||||
val candidate = candidates.singleOrNull()
|
||||
|
||||
var completionType = topLevelCall.prepareForCompletion(expectedType)
|
||||
val lastCall = candidate.lastCall
|
||||
lastCall.runCompletion(completionType, resolutionCallbacks)
|
||||
// this is needed at least for non-local return checker, because when we analyze lambda we should already bind descriptor for outer call
|
||||
candidate?.resolvedCall?.let { resolutionCallbacks.bindStubResolvedCallForCandidate(it) }
|
||||
|
||||
if (lastCall.constraintSystem.asConstraintSystemCompleterContext().canBeProper(lastCall.descriptorWithFreshTypes.returnTypeOrNothing)) {
|
||||
completionType = ConstraintSystemCompletionMode.FULL
|
||||
lastCall.runCompletion(completionType, resolutionCallbacks)
|
||||
if (candidate == null || candidate.csBuilder.hasContradiction) {
|
||||
val candidateForCompletion = candidate ?: factory.createErrorCandidate().forceResolution()
|
||||
candidateForCompletion.prepareForCompletion(expectedType)
|
||||
runCompletion(candidateForCompletion.resolvedCall, ConstraintSystemCompletionMode.FULL, diagnosticHolder, candidateForCompletion.getSystem(), resolutionCallbacks)
|
||||
|
||||
return CallResolutionResult(CallResolutionResult.Type.ERROR, candidate?.resolvedCall, diagnosticHolder.getDiagnostics(), ConstraintStorage.Empty)
|
||||
}
|
||||
|
||||
return when (completionType) {
|
||||
ConstraintSystemCompletionMode.FULL -> toCompletedBaseResolvedCall(lastCall.constraintSystem.asCallCompleterContext(), candidate, resolutionCallbacks)
|
||||
ConstraintSystemCompletionMode.PARTIAL -> ResolvedKotlinCall.OnlyResolvedKotlinCall(candidate)
|
||||
val completionType = candidate.prepareForCompletion(expectedType)
|
||||
val constraintSystem = candidate.getSystem()
|
||||
runCompletion(candidate.resolvedCall, completionType, diagnosticHolder, constraintSystem, resolutionCallbacks)
|
||||
|
||||
return if (completionType == ConstraintSystemCompletionMode.FULL) {
|
||||
CallResolutionResult(CallResolutionResult.Type.COMPLETED, candidate.resolvedCall, diagnosticHolder.getDiagnostics(), constraintSystem.asReadOnlyStorage())
|
||||
}
|
||||
else {
|
||||
CallResolutionResult(CallResolutionResult.Type.PARTIAL, candidate.resolvedCall, diagnosticHolder.getDiagnostics(), constraintSystem.asReadOnlyStorage())
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private fun SimpleKotlinResolutionCandidate.runCompletion(completionMode: ConstraintSystemCompletionMode, resolutionCallbacks: KotlinResolutionCallbacks) {
|
||||
kotlinConstraintSystemCompleter.runCompletion(
|
||||
constraintSystem.asConstraintSystemCompleterContext(), completionMode, descriptorWithFreshTypes.returnTypeOrNothing
|
||||
) {
|
||||
private fun runCompletion(
|
||||
resolvedCallAtom: ResolvedCallAtom,
|
||||
completionMode: ConstraintSystemCompletionMode,
|
||||
diagnosticsHolder: KotlinDiagnosticsHolder,
|
||||
constraintSystem: NewConstraintSystem,
|
||||
resolutionCallbacks: KotlinResolutionCallbacks
|
||||
) {
|
||||
val returnType = resolvedCallAtom.freshReturnType ?: constraintSystem.builtIns.unitType
|
||||
kotlinConstraintSystemCompleter.runCompletion(constraintSystem.asConstraintSystemCompleterContext(), completionMode, resolvedCallAtom, returnType) {
|
||||
postponedArgumentsAnalyzer.analyze(constraintSystem.asPostponedArgumentsAnalyzerContext(), resolutionCallbacks, it)
|
||||
}
|
||||
|
||||
constraintSystem.diagnostics.forEach(diagnosticsHolder::addDiagnostic)
|
||||
}
|
||||
|
||||
private fun toCompletedBaseResolvedCall(
|
||||
c: Context,
|
||||
candidate: KotlinResolutionCandidate,
|
||||
resolutionCallbacks: KotlinResolutionCallbacks
|
||||
): ResolvedKotlinCall.CompletedResolvedKotlinCall {
|
||||
val currentSubstitutor = c.buildResultingSubstitutor()
|
||||
val completedCall = candidate.toCompletedCall(currentSubstitutor, isTopLevel = true)
|
||||
val competedCalls = c.innerCalls.map {
|
||||
it.candidate.toCompletedCall(currentSubstitutor, isTopLevel = false)
|
||||
}
|
||||
for (postponedArgument in c.postponedArguments) {
|
||||
when (postponedArgument) {
|
||||
is PostponedLambdaArgument -> {
|
||||
postponedArgument.finalReturnType = currentSubstitutor.safeSubstitute(postponedArgument.returnType)
|
||||
}
|
||||
is PostponedCallableReferenceArgument -> {
|
||||
val resultTypeParameters = postponedArgument.myTypeVariables.map { currentSubstitutor.safeSubstitute(it.defaultType) }
|
||||
resolutionCallbacks.completeCallableReference(postponedArgument, resultTypeParameters)
|
||||
}
|
||||
is PostponedCollectionLiteralArgument -> {
|
||||
resolutionCallbacks.completeCollectionLiteralCalls(postponedArgument)
|
||||
}
|
||||
}
|
||||
}
|
||||
return ResolvedKotlinCall.CompletedResolvedKotlinCall(completedCall, competedCalls, c.lambdaArguments)
|
||||
}
|
||||
|
||||
private fun KotlinResolutionCandidate.toCompletedCall(substitutor: NewTypeSubstitutor, isTopLevel: Boolean): CompletedKotlinCall {
|
||||
if (this is VariableAsFunctionKotlinResolutionCandidate) {
|
||||
val variable = resolvedVariable.toCompletedCall(substitutor, isTopLevel = false)
|
||||
val invoke = invokeCandidate.toCompletedCall(substitutor, isTopLevel)
|
||||
|
||||
return CompletedKotlinCall.VariableAsFunction(kotlinCall, variable, invoke)
|
||||
}
|
||||
return (this as SimpleKotlinResolutionCandidate).toCompletedCall(substitutor, isTopLevel)
|
||||
}
|
||||
|
||||
private fun SimpleKotlinResolutionCandidate.toCompletedCall(substitutor: NewTypeSubstitutor, isTopLevel: Boolean): CompletedKotlinCall.Simple {
|
||||
val containsCapturedTypes = descriptorWithFreshTypes.returnType?.contains { it is NewCapturedType } ?: false
|
||||
val resultingDescriptor = when {
|
||||
descriptorWithFreshTypes is FunctionDescriptor ||
|
||||
(descriptorWithFreshTypes is PropertyDescriptor && (descriptorWithFreshTypes.typeParameters.isNotEmpty() || containsCapturedTypes)) ->
|
||||
// this code is very suspicious. Now it is very useful for BE, because they cannot do nothing with captured types,
|
||||
// but it seems like temporary solution.
|
||||
descriptorWithFreshTypes.substituteAndApproximateCapturedTypes(substitutor)
|
||||
else ->
|
||||
descriptorWithFreshTypes
|
||||
}
|
||||
|
||||
val typeArguments = descriptorWithFreshTypes.typeParameters.map {
|
||||
val substituted = substitutor.safeSubstitute(typeVariablesForFreshTypeParameters[it.index].defaultType)
|
||||
TypeApproximator().approximateToSuperType(substituted, TypeApproximatorConfiguration.CapturedTypesApproximation) ?: substituted
|
||||
}
|
||||
|
||||
val diagnostics = computeDiagnostics(this, resultingDescriptor, isTopLevel)
|
||||
return CompletedKotlinCall.Simple(kotlinCall, candidateDescriptor, resultingDescriptor, diagnostics, explicitReceiverKind,
|
||||
dispatchReceiverArgument?.receiver, extensionReceiver?.receiver, typeArguments, argumentMappingByOriginal)
|
||||
}
|
||||
|
||||
private fun computeDiagnostics(
|
||||
candidate: SimpleKotlinResolutionCandidate,
|
||||
resultingDescriptor: CallableDescriptor,
|
||||
isTopLevel: Boolean
|
||||
): List<KotlinCallDiagnostic> {
|
||||
var diagnostics = candidate.getCandidateDiagnostics()
|
||||
if (isTopLevel) {
|
||||
diagnostics += candidate.constraintSystem.diagnostics
|
||||
}
|
||||
diagnostics += additionalDiagnosticReporter.createAdditionalDiagnostics(candidate, resultingDescriptor)
|
||||
return diagnostics
|
||||
}
|
||||
|
||||
// true if we should complete this call
|
||||
private fun SimpleKotlinResolutionCandidate.prepareForCompletion(expectedType: UnwrappedType?): ConstraintSystemCompletionMode {
|
||||
val returnType = descriptorWithFreshTypes.returnType?.unwrap() ?: return ConstraintSystemCompletionMode.PARTIAL
|
||||
private fun KotlinResolutionCandidate.prepareForCompletion(expectedType: UnwrappedType?): ConstraintSystemCompletionMode {
|
||||
val unsubstitutedReturnType = resolvedCall.candidateDescriptor.returnType?.unwrap() ?: return ConstraintSystemCompletionMode.PARTIAL
|
||||
val returnType = resolvedCall.substitutor.safeSubstitute(unsubstitutedReturnType)
|
||||
if (expectedType != null && !TypeUtils.noExpectedType(expectedType)) {
|
||||
csBuilder.addSubtypeConstraint(returnType, expectedType, ExpectedTypeConstraintPosition(kotlinCall))
|
||||
csBuilder.addSubtypeConstraint(returnType, expectedType, ExpectedTypeConstraintPosition(resolvedCall.atom))
|
||||
}
|
||||
|
||||
return if (expectedType != null || csBuilder.isProperType(returnType)) {
|
||||
|
||||
+9
-12
@@ -18,7 +18,6 @@ package org.jetbrains.kotlin.resolve.calls.components
|
||||
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ConstraintInjector
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ResultTypeResolver
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.SimpleConstraintSystemImpl
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.resolve.calls.results.FlatSignature
|
||||
@@ -32,32 +31,30 @@ class NewOverloadingConflictResolver(
|
||||
builtIns: KotlinBuiltIns,
|
||||
specificityComparator: TypeSpecificityComparator,
|
||||
statelessCallbacks: KotlinResolutionStatelessCallbacks,
|
||||
constraintInjector: ConstraintInjector,
|
||||
typeResolver: ResultTypeResolver
|
||||
constraintInjector: ConstraintInjector
|
||||
) : OverloadingConflictResolver<KotlinResolutionCandidate>(
|
||||
builtIns,
|
||||
specificityComparator,
|
||||
{
|
||||
// todo investigate
|
||||
(it as? VariableAsFunctionKotlinResolutionCandidate)?.invokeCandidate?.candidateDescriptor ?:
|
||||
(it as SimpleKotlinResolutionCandidate).candidateDescriptor
|
||||
it.resolvedCall.candidateDescriptor
|
||||
},
|
||||
{ SimpleConstraintSystemImpl(constraintInjector, typeResolver) },
|
||||
{ SimpleConstraintSystemImpl(constraintInjector, builtIns) },
|
||||
Companion::createFlatSignature,
|
||||
{ (it as? VariableAsFunctionKotlinResolutionCandidate)?.resolvedVariable },
|
||||
{ it.variableCandidateIfInvoke },
|
||||
{ statelessCallbacks.isDescriptorFromSource(it) }
|
||||
) {
|
||||
|
||||
companion object {
|
||||
private fun createFlatSignature(candidate: KotlinResolutionCandidate): FlatSignature<KotlinResolutionCandidate> {
|
||||
val simpleCandidate = (candidate as? VariableAsFunctionKotlinResolutionCandidate)?.invokeCandidate ?: (candidate as SimpleKotlinResolutionCandidate)
|
||||
|
||||
val originalDescriptor = simpleCandidate.descriptorWithFreshTypes.original
|
||||
val resolvedCall = candidate.resolvedCall
|
||||
val originalDescriptor = resolvedCall.candidateDescriptor.original
|
||||
val originalValueParameters = originalDescriptor.valueParameters
|
||||
|
||||
var numDefaults = 0
|
||||
val valueArgumentToParameterType = HashMap<KotlinCallArgument, KotlinType>()
|
||||
for ((valueParameter, resolvedValueArgument) in simpleCandidate.argumentMappingByOriginal) {
|
||||
for ((valueParameter, resolvedValueArgument) in resolvedCall.argumentMappingByOriginal) {
|
||||
if (resolvedValueArgument is ResolvedCallArgument.DefaultArgument) {
|
||||
numDefaults++
|
||||
}
|
||||
@@ -73,8 +70,8 @@ class NewOverloadingConflictResolver(
|
||||
return FlatSignature.create(candidate,
|
||||
originalDescriptor,
|
||||
numDefaults,
|
||||
simpleCandidate.kotlinCall.argumentsInParenthesis.map { valueArgumentToParameterType[it] } +
|
||||
listOfNotNull(simpleCandidate.kotlinCall.externalArgument?.let { valueArgumentToParameterType[it] })
|
||||
resolvedCall.atom.argumentsInParenthesis.map { valueArgumentToParameterType[it] } +
|
||||
listOfNotNull(resolvedCall.atom.externalArgument?.let { valueArgumentToParameterType[it] })
|
||||
)
|
||||
|
||||
}
|
||||
|
||||
+45
-45
@@ -17,6 +17,7 @@
|
||||
package org.jetbrains.kotlin.resolve.calls.components
|
||||
|
||||
import org.jetbrains.kotlin.builtins.*
|
||||
import org.jetbrains.kotlin.descriptors.annotations.Annotations
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemBuilder
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ArgumentConstraintPosition
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.TypeVariableForLambdaReturnType
|
||||
@@ -25,94 +26,93 @@ import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.builtIns
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
fun createPostponedArgumentAndPerformInitialChecks(
|
||||
fun resolveKtPrimitive(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
argument: PostponableKotlinCallArgument,
|
||||
expectedType: UnwrappedType
|
||||
): KotlinCallDiagnostic? {
|
||||
val (postponedArgument, diagnostic) = when (argument) {
|
||||
is LambdaKotlinCallArgument -> preprocessLambdaArgument(csBuilder, argument, expectedType)
|
||||
is CallableReferenceKotlinCallArgument -> preprocessCallableReference(csBuilder, argument, expectedType)
|
||||
is CollectionLiteralKotlinCallArgument -> preprocessCollectionLiteralArgument(csBuilder, argument, expectedType)
|
||||
else -> unexpectedArgument(argument)
|
||||
}
|
||||
csBuilder.addPostponedArgument(postponedArgument)
|
||||
|
||||
return diagnostic
|
||||
argument: KotlinCallArgument,
|
||||
expectedType: UnwrappedType?,
|
||||
diagnosticsHolder: KotlinDiagnosticsHolder,
|
||||
isReceiver: Boolean
|
||||
): ResolvedAtom = when (argument) {
|
||||
is SimpleKotlinCallArgument -> checkSimpleArgument(csBuilder, argument, expectedType, diagnosticsHolder, isReceiver)
|
||||
is LambdaKotlinCallArgument -> preprocessLambdaArgument(csBuilder, argument, expectedType)
|
||||
is CallableReferenceKotlinCallArgument -> preprocessCallableReference(csBuilder, argument, expectedType, diagnosticsHolder)
|
||||
is CollectionLiteralKotlinCallArgument -> preprocessCollectionLiteralArgument(argument, expectedType)
|
||||
else -> unexpectedArgument(argument)
|
||||
}
|
||||
|
||||
|
||||
// if expected type isn't function type, then may be it is Function<R>, Any or just `T`
|
||||
private fun preprocessLambdaArgument(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
argument: LambdaKotlinCallArgument,
|
||||
expectedType: UnwrappedType
|
||||
): Pair<PostponedLambdaArgument, KotlinCallDiagnostic?> {
|
||||
val builtIns = expectedType.builtIns
|
||||
val isSuspend = expectedType.isSuspendFunctionType
|
||||
expectedType: UnwrappedType?
|
||||
): ResolvedAtom {
|
||||
val builtIns = csBuilder.builtIns
|
||||
val isSuspend = expectedType?.isSuspendFunctionType ?: false
|
||||
|
||||
val receiverType: UnwrappedType? // null means that there is no receiver
|
||||
val parameters: List<UnwrappedType>
|
||||
val returnType: UnwrappedType
|
||||
val typeVariable = TypeVariableForLambdaReturnType(argument, builtIns, "_L")
|
||||
|
||||
if (expectedType.isBuiltinFunctionalType) {
|
||||
if (expectedType?.isBuiltinFunctionalType == true) {
|
||||
receiverType = if (argument is FunctionExpression) argument.receiverType else expectedType.getReceiverTypeFromFunctionType()?.unwrap()
|
||||
|
||||
val expectedParameters = expectedType.getValueParameterTypesFromFunctionType()
|
||||
if (argument.parametersTypes != null) {
|
||||
parameters = argument.parametersTypes!!.mapIndexed {
|
||||
parameters = if (argument.parametersTypes != null) {
|
||||
argument.parametersTypes!!.mapIndexed {
|
||||
index, type ->
|
||||
type ?: expectedParameters.getOrNull(index)?.type?.unwrap() ?: builtIns.nullableAnyType
|
||||
}
|
||||
}
|
||||
else {
|
||||
// lambda without explicit parameters: { }
|
||||
parameters = expectedParameters.map { it.type.unwrap() }
|
||||
expectedParameters.map { it.type.unwrap() }
|
||||
}
|
||||
returnType = argument.safeAs<FunctionExpression>()?.returnType ?: expectedType.getReturnTypeFromFunctionType().unwrap()
|
||||
}
|
||||
else {
|
||||
val isFunctionSupertype = KotlinBuiltIns.isNotNullOrNullableFunctionSupertype(expectedType)
|
||||
val isFunctionSupertype = expectedType != null && KotlinBuiltIns.isNotNullOrNullableFunctionSupertype(expectedType)
|
||||
receiverType = argument.safeAs<FunctionExpression>()?.receiverType
|
||||
parameters = argument.parametersTypes?.map { it ?: builtIns.nothingType } ?: emptyList()
|
||||
returnType = argument.safeAs<FunctionExpression>()?.returnType ?:
|
||||
expectedType.arguments.singleOrNull()?.type?.unwrap()?.takeIf { isFunctionSupertype } ?:
|
||||
createFreshTypeVariableForLambdaReturnType(csBuilder, argument, builtIns)
|
||||
expectedType?.arguments?.singleOrNull()?.type?.unwrap()?.takeIf { isFunctionSupertype } ?:
|
||||
typeVariable.defaultType
|
||||
|
||||
// what about case where expected type is type variable? In old TY such cases was not supported. => do nothing for now. todo design
|
||||
}
|
||||
|
||||
val resolvedArgument = PostponedLambdaArgument(argument, isSuspend, receiverType, parameters, returnType)
|
||||
val newTypeVariableUsed = returnType == typeVariable.defaultType
|
||||
if (newTypeVariableUsed) csBuilder.registerVariable(typeVariable)
|
||||
|
||||
csBuilder.addSubtypeConstraint(resolvedArgument.type, expectedType, ArgumentConstraintPosition(argument))
|
||||
if (expectedType != null) {
|
||||
val lambdaType = createFunctionType(returnType.builtIns, Annotations.EMPTY, receiverType, parameters, null, returnType, isSuspend)
|
||||
csBuilder.addSubtypeConstraint(lambdaType, expectedType, ArgumentConstraintPosition(argument))
|
||||
}
|
||||
|
||||
return resolvedArgument to null
|
||||
}
|
||||
|
||||
private fun createFreshTypeVariableForLambdaReturnType(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
argument: LambdaKotlinCallArgument,
|
||||
builtIns: KotlinBuiltIns
|
||||
): UnwrappedType {
|
||||
val typeVariable = TypeVariableForLambdaReturnType(argument, builtIns, "_L")
|
||||
csBuilder.registerVariable(typeVariable)
|
||||
return typeVariable.defaultType
|
||||
return ResolvedLambdaAtom(argument, isSuspend, receiverType, parameters, returnType, typeVariable.takeIf { newTypeVariableUsed })
|
||||
}
|
||||
|
||||
private fun preprocessCallableReference(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
argument: CallableReferenceKotlinCallArgument,
|
||||
expectedType: UnwrappedType
|
||||
): Pair<PostponedCallableReferenceArgument, KotlinCallDiagnostic?> {
|
||||
expectedType: UnwrappedType?,
|
||||
diagnosticsHolder: KotlinDiagnosticsHolder
|
||||
): ResolvedAtom {
|
||||
val result = ResolvedCallableReferenceAtom(argument, expectedType)
|
||||
if (expectedType == null) return result
|
||||
|
||||
val notCallableTypeConstructor = csBuilder.getProperSuperTypeConstructors(expectedType).firstOrNull { !ReflectionTypes.isPossibleExpectedCallableType(it) }
|
||||
val diagnostic = notCallableTypeConstructor?.let { NotCallableExpectedType(argument, expectedType, notCallableTypeConstructor) }
|
||||
return PostponedCallableReferenceArgument(argument, expectedType) to diagnostic
|
||||
if (notCallableTypeConstructor != null) {
|
||||
diagnosticsHolder.addDiagnostic(NotCallableExpectedType(argument, expectedType, notCallableTypeConstructor))
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
private fun preprocessCollectionLiteralArgument(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
collectionLiteralArgument: CollectionLiteralKotlinCallArgument,
|
||||
expectedType: UnwrappedType
|
||||
): Pair<PostponedCollectionLiteralArgument, KotlinCallDiagnostic?> {
|
||||
expectedType: UnwrappedType?
|
||||
): ResolvedAtom {
|
||||
// todo add some checks about expected type
|
||||
return PostponedCollectionLiteralArgument(collectionLiteralArgument, expectedType) to null
|
||||
return ResolvedCollectionLiteralAtom(collectionLiteralArgument, expectedType)
|
||||
}
|
||||
|
||||
+21
-14
@@ -17,12 +17,11 @@
|
||||
package org.jetbrains.kotlin.resolve.calls.components
|
||||
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemBuilder
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.addSubsystemForArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.NewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.LambdaArgumentConstraintPosition
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedCallableReferenceArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedCollectionLiteralArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedKotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedLambdaArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.builtIns
|
||||
|
||||
@@ -36,34 +35,42 @@ class PostponedArgumentsAnalyzer(
|
||||
fun canBeProper(type: UnwrappedType): Boolean
|
||||
|
||||
// mutable operations
|
||||
fun addOtherSystem(otherSystem: ConstraintStorage)
|
||||
fun getBuilder(): ConstraintSystemBuilder
|
||||
}
|
||||
|
||||
fun analyze(c: Context, resolutionCallbacks: KotlinResolutionCallbacks, argument: PostponedKotlinCallArgument) {
|
||||
fun analyze(c: Context, resolutionCallbacks: KotlinResolutionCallbacks, argument: ResolvedAtom) {
|
||||
when (argument) {
|
||||
is PostponedLambdaArgument -> analyzeLambda(c, resolutionCallbacks, argument)
|
||||
is PostponedCallableReferenceArgument -> callableReferenceResolver.processCallableReferenceArgument(c.getBuilder(), argument)
|
||||
is PostponedCollectionLiteralArgument -> TODO("Not supported")
|
||||
is ResolvedLambdaAtom -> analyzeLambda(c, resolutionCallbacks, argument)
|
||||
is ResolvedCallableReferenceAtom -> callableReferenceResolver.processCallableReferenceArgument(c.getBuilder(), argument)
|
||||
is ResolvedCollectionLiteralAtom -> TODO("Not supported")
|
||||
else -> error("Unexpected resolved primitive: ${argument.javaClass.canonicalName}")
|
||||
}
|
||||
}
|
||||
|
||||
private fun analyzeLambda(c: Context, resolutionCallbacks: KotlinResolutionCallbacks, lambda: PostponedLambdaArgument) {
|
||||
private fun analyzeLambda(c: Context, resolutionCallbacks: KotlinResolutionCallbacks, lambda: ResolvedLambdaAtom) {
|
||||
val currentSubstitutor = c.buildCurrentSubstitutor()
|
||||
fun substitute(type: UnwrappedType) = currentSubstitutor.safeSubstitute(type)
|
||||
|
||||
val receiver = lambda.receiver?.let(::substitute)
|
||||
val parameters = lambda.parameters.map(::substitute)
|
||||
val expectedType = lambda.returnType.takeIf { c.canBeProper(it) }?.let(::substitute)
|
||||
lambda.analyzed = true
|
||||
lambda.resultArguments = resolutionCallbacks.analyzeAndGetLambdaResultArguments(lambda.argument, lambda.isSuspend, receiver, parameters, expectedType)
|
||||
|
||||
for (resultLambdaArgument in lambda.resultArguments) {
|
||||
checkSimpleArgument(c.getBuilder(), resultLambdaArgument, lambda.returnType.let(::substitute))
|
||||
val resultArguments = resolutionCallbacks.analyzeAndGetLambdaResultArguments(lambda.atom, lambda.isSuspend, receiver, parameters, expectedType)
|
||||
|
||||
resultArguments.forEach { c.addSubsystemForArgument(it) }
|
||||
|
||||
val diagnosticHolder = KotlinDiagnosticsHolder.SimpleHolder()
|
||||
|
||||
val subResolvedKtPrimitives = resultArguments.map {
|
||||
checkSimpleArgument(c.getBuilder(), it, lambda.returnType.let(::substitute), diagnosticHolder, isReceiver = false)
|
||||
}
|
||||
|
||||
if (lambda.resultArguments.isEmpty()) {
|
||||
if (resultArguments.isEmpty()) {
|
||||
val unitType = lambda.returnType.builtIns.unitType
|
||||
c.getBuilder().addSubtypeConstraint(lambda.returnType.let(::substitute), unitType, LambdaArgumentConstraintPosition(lambda))
|
||||
}
|
||||
|
||||
lambda.setAnalyzedResults(resultArguments, subResolvedKtPrimitives, diagnosticHolder.getDiagnostics())
|
||||
}
|
||||
}
|
||||
+145
-119
@@ -31,114 +31,127 @@ import org.jetbrains.kotlin.resolve.calls.tasks.ExplicitReceiverKind.*
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.InfixCallNoInfixModifier
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.InvokeConventionCallNoOperatorModifier
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.VisibilityError
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.isSuccess
|
||||
import org.jetbrains.kotlin.utils.SmartList
|
||||
import org.jetbrains.kotlin.utils.addIfNotNull
|
||||
import org.jetbrains.kotlin.types.ErrorUtils
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
internal object CheckInstantiationOfAbstractClass : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
if (candidateDescriptor is ConstructorDescriptor && !callComponents.statelessCallbacks.isSuperOrDelegatingConstructorCall(kotlinCall)) {
|
||||
internal object CheckInstantiationOfAbstractClass : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val candidateDescriptor = resolvedCall.candidateDescriptor
|
||||
|
||||
if (candidateDescriptor is ConstructorDescriptor &&
|
||||
!callComponents.statelessCallbacks.isSuperOrDelegatingConstructorCall(resolvedCall.atom)) {
|
||||
if (candidateDescriptor.constructedClass.modality == Modality.ABSTRACT) {
|
||||
return listOf(InstantiationOfAbstractClass)
|
||||
addDiagnostic(InstantiationOfAbstractClass)
|
||||
}
|
||||
}
|
||||
|
||||
return emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
internal object CheckVisibility : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
internal object CheckVisibility : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val containingDescriptor = scopeTower.lexicalScope.ownerDescriptor
|
||||
val dispatchReceiverArgument = resolvedCall.dispatchReceiverArgument
|
||||
|
||||
val receiverValue = dispatchReceiverArgument?.receiver?.receiverValue ?: Visibilities.ALWAYS_SUITABLE_RECEIVER
|
||||
val invisibleMember = Visibilities.findInvisibleMember(receiverValue, candidateDescriptor, containingDescriptor) ?: return emptyList()
|
||||
val invisibleMember = Visibilities.findInvisibleMember(receiverValue, resolvedCall.candidateDescriptor, containingDescriptor) ?: return
|
||||
|
||||
if (dispatchReceiverArgument is ExpressionKotlinCallArgument) {
|
||||
val smartCastReceiver = getReceiverValueWithSmartCast(receiverValue, dispatchReceiverArgument.receiver.stableType)
|
||||
if (Visibilities.findInvisibleMember(smartCastReceiver, candidateDescriptor, containingDescriptor) == null) {
|
||||
return listOf(SmartCastDiagnostic(dispatchReceiverArgument, dispatchReceiverArgument.receiver.stableType))
|
||||
addDiagnostic(SmartCastDiagnostic(dispatchReceiverArgument, dispatchReceiverArgument.receiver.stableType))
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
return listOf(VisibilityError(invisibleMember))
|
||||
}
|
||||
|
||||
private val SimpleKotlinResolutionCandidate.containingDescriptor: DeclarationDescriptor get() = scopeTower.lexicalScope.ownerDescriptor
|
||||
}
|
||||
|
||||
internal object MapTypeArguments : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
typeArgumentMappingByOriginal = callComponents.typeArgumentsToParametersMapper.mapTypeArguments(kotlinCall, candidateDescriptor.original)
|
||||
return typeArgumentMappingByOriginal.diagnostics
|
||||
addDiagnostic(VisibilityError(invisibleMember))
|
||||
}
|
||||
}
|
||||
|
||||
internal object NoTypeArguments : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
internal object MapTypeArguments : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
resolvedCall.typeArgumentMappingByOriginal =
|
||||
callComponents.typeArgumentsToParametersMapper.mapTypeArguments(kotlinCall, candidateDescriptor.original).also {
|
||||
it.diagnostics.forEach(this@process::addDiagnostic)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal object NoTypeArguments : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
assert(kotlinCall.typeArguments.isEmpty()) {
|
||||
"Variable call cannot has explicit type arguments: ${kotlinCall.typeArguments}. Call: $kotlinCall"
|
||||
}
|
||||
typeArgumentMappingByOriginal = NoExplicitArguments
|
||||
return typeArgumentMappingByOriginal.diagnostics
|
||||
resolvedCall.typeArgumentMappingByOriginal = NoExplicitArguments
|
||||
}
|
||||
}
|
||||
|
||||
internal object MapArguments : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
internal object MapArguments : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val mapping = callComponents.argumentsToParametersMapper.mapArguments(kotlinCall, candidateDescriptor)
|
||||
argumentMappingByOriginal = mapping.parameterToCallArgumentMap
|
||||
return mapping.diagnostics
|
||||
mapping.diagnostics.forEach(this::addDiagnostic)
|
||||
|
||||
resolvedCall.argumentMappingByOriginal = mapping.parameterToCallArgumentMap
|
||||
}
|
||||
}
|
||||
|
||||
internal object NoArguments : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
internal object ArgumentsToCandidateParameterDescriptor : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val map = hashMapOf<KotlinCallArgument, ValueParameterDescriptor>()
|
||||
for ((originalValueParameter, resolvedCallArgument) in resolvedCall.argumentMappingByOriginal) {
|
||||
val valueParameter = candidateDescriptor.valueParameters.getOrNull(originalValueParameter.index) ?: continue
|
||||
for (argument in resolvedCallArgument.arguments) {
|
||||
map[argument] = valueParameter
|
||||
}
|
||||
}
|
||||
resolvedCall.argumentToCandidateParameter = map
|
||||
}
|
||||
}
|
||||
|
||||
internal object NoArguments : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
assert(kotlinCall.argumentsInParenthesis.isEmpty()) {
|
||||
"Variable call cannot has arguments: ${kotlinCall.argumentsInParenthesis}. Call: $kotlinCall"
|
||||
}
|
||||
assert(kotlinCall.externalArgument == null) {
|
||||
"Variable call cannot has external argument: ${kotlinCall.externalArgument}. Call: $kotlinCall"
|
||||
}
|
||||
argumentMappingByOriginal = emptyMap()
|
||||
return emptyList()
|
||||
resolvedCall.argumentMappingByOriginal = emptyMap()
|
||||
resolvedCall.argumentToCandidateParameter = emptyMap()
|
||||
}
|
||||
}
|
||||
|
||||
internal object CreateDescriptorWithFreshTypeVariables : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
|
||||
internal object CreateFreshVariablesSubstitutor : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
if (candidateDescriptor.typeParameters.isEmpty()) {
|
||||
descriptorWithFreshTypes = candidateDescriptor
|
||||
return emptyList()
|
||||
resolvedCall.substitutor = FreshVariableNewTypeSubstitutor.Empty
|
||||
return
|
||||
}
|
||||
val toFreshVariables = createToFreshVariableSubstitutorAndAddInitialConstraints(candidateDescriptor, csBuilder)
|
||||
typeVariablesForFreshTypeParameters = toFreshVariables.freshVariables
|
||||
resolvedCall.substitutor = toFreshVariables
|
||||
|
||||
// bad function -- error on declaration side
|
||||
if (csBuilder.hasContradiction) {
|
||||
descriptorWithFreshTypes = candidateDescriptor
|
||||
return emptyList()
|
||||
}
|
||||
if (csBuilder.hasContradiction) return
|
||||
|
||||
// optimization
|
||||
if (typeArgumentMappingByOriginal == NoExplicitArguments && knownTypeParametersResultingSubstitutor == null) {
|
||||
descriptorWithFreshTypes = candidateDescriptor.substitute(toFreshVariables)
|
||||
csBuilder.simplify().let { assert(it.isEmpty) { "Substitutor should be empty: $it, call: $kotlinCall" } }
|
||||
return emptyList()
|
||||
if (resolvedCall.typeArgumentMappingByOriginal == NoExplicitArguments && knownTypeParametersResultingSubstitutor == null) {
|
||||
return
|
||||
}
|
||||
|
||||
val typeParameters = candidateDescriptor.typeParameters
|
||||
for (index in typeParameters.indices) {
|
||||
val typeParameter = typeParameters[index]
|
||||
val freshVariable = toFreshVariables.freshVariables[index]
|
||||
|
||||
val knownTypeArgument = knownTypeParametersResultingSubstitutor?.substitute(typeParameter.defaultType)
|
||||
if (knownTypeArgument != null) {
|
||||
val freshVariable = toFreshVariables.freshVariables[index]
|
||||
csBuilder.addEqualityConstraint(freshVariable.defaultType, knownTypeArgument.unwrap(), KnownTypeParameterConstraintPosition(knownTypeArgument))
|
||||
continue
|
||||
}
|
||||
|
||||
val typeArgument = typeArgumentMappingByOriginal.getTypeArgument(typeParameter)
|
||||
val typeArgument = resolvedCall.typeArgumentMappingByOriginal.getTypeArgument(typeParameter)
|
||||
|
||||
if (typeArgument is SimpleTypeArgument) {
|
||||
val freshVariable = toFreshVariables.freshVariables[index]
|
||||
csBuilder.addEqualityConstraint(freshVariable.defaultType, typeArgument.type, ExplicitTypeParameterConstraintPosition(typeArgument))
|
||||
}
|
||||
else {
|
||||
@@ -147,19 +160,6 @@ internal object CreateDescriptorWithFreshTypeVariables : ResolutionPart {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Note: here we can fix also placeholders arguments.
|
||||
* Example:
|
||||
* fun <X : Array<Y>, Y> foo()
|
||||
*
|
||||
* foo<Array<String>, *>()
|
||||
*/
|
||||
val toFixedTypeParameters = csBuilder.simplify()
|
||||
// todo optimize -- composite substitutions before run safeSubstitute
|
||||
descriptorWithFreshTypes = candidateDescriptor.substitute(toFreshVariables).substitute(toFixedTypeParameters)
|
||||
|
||||
return emptyList()
|
||||
}
|
||||
|
||||
fun createToFreshVariableSubstitutorAndAddInitialConstraints(
|
||||
@@ -189,98 +189,124 @@ internal object CreateDescriptorWithFreshTypeVariables : ResolutionPart {
|
||||
}
|
||||
}
|
||||
|
||||
internal object CheckExplicitReceiverKindConsistency : ResolutionPart {
|
||||
private fun SimpleKotlinResolutionCandidate.hasError(): Nothing =
|
||||
internal object CheckExplicitReceiverKindConsistency : ResolutionPart() {
|
||||
private fun KotlinResolutionCandidate.hasError(): Nothing =
|
||||
error("Inconsistent call: $kotlinCall. \n" +
|
||||
"Candidate: $candidateDescriptor, explicitReceiverKind: $explicitReceiverKind.\n" +
|
||||
"Candidate: $candidateDescriptor, explicitReceiverKind: ${resolvedCall.explicitReceiverKind}.\n" +
|
||||
"Explicit receiver: ${kotlinCall.explicitReceiver}, dispatchReceiverForInvokeExtension: ${kotlinCall.dispatchReceiverForInvokeExtension}")
|
||||
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
when (explicitReceiverKind) {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
when (resolvedCall.explicitReceiverKind) {
|
||||
NO_EXPLICIT_RECEIVER -> if (kotlinCall.explicitReceiver is SimpleKotlinCallArgument || kotlinCall.dispatchReceiverForInvokeExtension != null) hasError()
|
||||
DISPATCH_RECEIVER, EXTENSION_RECEIVER -> if (kotlinCall.explicitReceiver == null || kotlinCall.dispatchReceiverForInvokeExtension != null) hasError()
|
||||
BOTH_RECEIVERS -> if (kotlinCall.explicitReceiver == null || kotlinCall.dispatchReceiverForInvokeExtension == null) hasError()
|
||||
}
|
||||
return emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
internal object CheckReceivers : ResolutionPart {
|
||||
private fun SimpleKotlinResolutionCandidate.checkReceiver(
|
||||
private fun KotlinResolutionCandidate.resolveKotlinArgument(
|
||||
argument: KotlinCallArgument,
|
||||
candidateParameter: ParameterDescriptor?,
|
||||
isReceiver: Boolean
|
||||
) {
|
||||
val expectedType = candidateParameter?.let {
|
||||
resolvedCall.substitutor.safeSubstitute(argument.getExpectedType(candidateParameter))
|
||||
}
|
||||
addResolvedKtPrimitive(resolveKtPrimitive(csBuilder, argument, expectedType, this, isReceiver))
|
||||
}
|
||||
|
||||
internal object CheckReceivers : ResolutionPart() {
|
||||
private fun KotlinResolutionCandidate.checkReceiver(
|
||||
receiverArgument: SimpleKotlinCallArgument?,
|
||||
receiverParameter: ReceiverParameterDescriptor?
|
||||
): KotlinCallDiagnostic? {
|
||||
) {
|
||||
if ((receiverArgument == null) != (receiverParameter == null)) {
|
||||
error("Inconsistency receiver state for call $kotlinCall and candidate descriptor: $candidateDescriptor")
|
||||
}
|
||||
if (receiverArgument == null || receiverParameter == null) return null
|
||||
if (receiverArgument == null || receiverParameter == null) return
|
||||
|
||||
val expectedType = receiverParameter.type.unwrap()
|
||||
|
||||
return checkSimpleArgument(csBuilder, receiverArgument, expectedType, isReceiver = true)
|
||||
resolveKotlinArgument(receiverArgument, receiverParameter, isReceiver = true)
|
||||
}
|
||||
|
||||
override fun SimpleKotlinResolutionCandidate.process() =
|
||||
listOfNotNull(checkReceiver(dispatchReceiverArgument, descriptorWithFreshTypes.dispatchReceiverParameter),
|
||||
checkReceiver(extensionReceiver, descriptorWithFreshTypes.extensionReceiverParameter))
|
||||
}
|
||||
|
||||
internal object CheckArguments : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
val diagnostics = SmartList<KotlinCallDiagnostic>()
|
||||
for (parameterDescriptor in descriptorWithFreshTypes.valueParameters) {
|
||||
// error was reported in ArgumentsToParametersMapper
|
||||
val resolvedCallArgument = argumentMappingByOriginal[parameterDescriptor.original] ?: continue
|
||||
for (argument in resolvedCallArgument.arguments) {
|
||||
|
||||
val expectedType = argument.getExpectedType(parameterDescriptor)
|
||||
val diagnostic = when (argument) {
|
||||
is SimpleKotlinCallArgument ->
|
||||
checkSimpleArgument(csBuilder, argument, expectedType)
|
||||
is PostponableKotlinCallArgument ->
|
||||
createPostponedArgumentAndPerformInitialChecks(csBuilder, argument, expectedType)
|
||||
else -> unexpectedArgument(argument)
|
||||
}
|
||||
diagnostics.addIfNotNull(diagnostic)
|
||||
|
||||
if (diagnostic != null && !diagnostic.candidateApplicability.isSuccess) break
|
||||
}
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
if (workIndex == 0) {
|
||||
checkReceiver(resolvedCall.dispatchReceiverArgument, candidateDescriptor.dispatchReceiverParameter)
|
||||
} else {
|
||||
checkReceiver(resolvedCall.extensionReceiverArgument, candidateDescriptor.extensionReceiverParameter)
|
||||
}
|
||||
return diagnostics
|
||||
}
|
||||
|
||||
override fun KotlinResolutionCandidate.workCount() = 2
|
||||
}
|
||||
|
||||
internal object CheckArguments : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val argument = kotlinCall.argumentsInParenthesis[workIndex]
|
||||
resolveKotlinArgument(argument, resolvedCall.argumentToCandidateParameter[argument], isReceiver = false)
|
||||
}
|
||||
|
||||
override fun KotlinResolutionCandidate.workCount() = kotlinCall.argumentsInParenthesis.size
|
||||
}
|
||||
|
||||
internal object CheckExternalArgument : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val argument = kotlinCall.externalArgument ?: return
|
||||
|
||||
resolveKotlinArgument(argument, resolvedCall.argumentToCandidateParameter[argument], isReceiver = false)
|
||||
}
|
||||
}
|
||||
|
||||
internal object CheckInfixResolutionPart : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
internal object CheckInfixResolutionPart : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val candidateDescriptor = resolvedCall.candidateDescriptor
|
||||
if (callComponents.statelessCallbacks.isInfixCall(kotlinCall) &&
|
||||
(candidateDescriptor !is FunctionDescriptor || !candidateDescriptor.isInfix)) {
|
||||
return listOf(InfixCallNoInfixModifier)
|
||||
addDiagnostic(InfixCallNoInfixModifier)
|
||||
}
|
||||
|
||||
return emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
internal object CheckOperatorResolutionPart : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
internal object CheckOperatorResolutionPart : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val candidateDescriptor = resolvedCall.candidateDescriptor
|
||||
if (callComponents.statelessCallbacks.isOperatorCall(kotlinCall) &&
|
||||
(candidateDescriptor !is FunctionDescriptor || !candidateDescriptor.isOperator)) {
|
||||
return listOf(InvokeConventionCallNoOperatorModifier)
|
||||
addDiagnostic(InvokeConventionCallNoOperatorModifier)
|
||||
}
|
||||
|
||||
return emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
internal object CheckAbstractSuperCallPart : ResolutionPart {
|
||||
override fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic> {
|
||||
if (callComponents.statelessCallbacks.isSuperExpression(dispatchReceiverArgument)) {
|
||||
internal object CheckAbstractSuperCallPart : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
val candidateDescriptor = resolvedCall.candidateDescriptor
|
||||
|
||||
if (callComponents.statelessCallbacks.isSuperExpression(resolvedCall.dispatchReceiverArgument)) {
|
||||
if (candidateDescriptor is MemberDescriptor && candidateDescriptor.modality == Modality.ABSTRACT) {
|
||||
return listOf(AbstractSuperCall)
|
||||
addDiagnostic(AbstractSuperCall)
|
||||
}
|
||||
}
|
||||
|
||||
return emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
internal object ErrorDescriptorResolutionPart : ResolutionPart() {
|
||||
override fun KotlinResolutionCandidate.process(workIndex: Int) {
|
||||
assert(ErrorUtils.isError(candidateDescriptor)) {
|
||||
"Should be error descriptor: $candidateDescriptor"
|
||||
}
|
||||
resolvedCall.typeArgumentMappingByOriginal = TypeArgumentsToParametersMapper.TypeArgumentsMapping.NoExplicitArguments
|
||||
resolvedCall.argumentMappingByOriginal = emptyMap()
|
||||
resolvedCall.substitutor = FreshVariableNewTypeSubstitutor.Empty
|
||||
resolvedCall.argumentToCandidateParameter = emptyMap()
|
||||
|
||||
kotlinCall.explicitReceiver?.safeAs<SimpleKotlinCallArgument>()?.let {
|
||||
resolveKotlinArgument(it, null, isReceiver = true)
|
||||
}
|
||||
for (argument in kotlinCall.argumentsInParenthesis) {
|
||||
resolveKotlinArgument(argument, null, isReceiver = true)
|
||||
}
|
||||
|
||||
kotlinCall.externalArgument?.let {
|
||||
resolveKotlinArgument(it, null, isReceiver = true)
|
||||
}
|
||||
}
|
||||
}
|
||||
+33
-26
@@ -35,22 +35,25 @@ import org.jetbrains.kotlin.types.upperIfFlexible
|
||||
fun checkSimpleArgument(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
argument: SimpleKotlinCallArgument,
|
||||
expectedType: UnwrappedType,
|
||||
isReceiver: Boolean = false
|
||||
): KotlinCallDiagnostic? {
|
||||
return when (argument) {
|
||||
is ExpressionKotlinCallArgument -> checkExpressionArgument(csBuilder, argument, expectedType, isReceiver)
|
||||
is SubKotlinCallArgument -> checkSubCallArgument(csBuilder, argument, expectedType, isReceiver)
|
||||
else -> unexpectedArgument(argument)
|
||||
}
|
||||
expectedType: UnwrappedType?,
|
||||
diagnosticsHolder: KotlinDiagnosticsHolder,
|
||||
isReceiver: Boolean
|
||||
): ResolvedAtom = when (argument) {
|
||||
is ExpressionKotlinCallArgument -> checkExpressionArgument(csBuilder, argument, expectedType, diagnosticsHolder, isReceiver)
|
||||
is SubKotlinCallArgument -> checkSubCallArgument(csBuilder, argument, expectedType, diagnosticsHolder, isReceiver)
|
||||
else -> unexpectedArgument(argument)
|
||||
}
|
||||
|
||||
private fun checkExpressionArgument(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
expressionArgument: ExpressionKotlinCallArgument,
|
||||
expectedType: UnwrappedType,
|
||||
expectedType: UnwrappedType?,
|
||||
diagnosticsHolder: KotlinDiagnosticsHolder,
|
||||
isReceiver: Boolean
|
||||
): KotlinCallDiagnostic? {
|
||||
): ResolvedAtom {
|
||||
val resolvedKtExpression = ResolvedExpressionAtom(expressionArgument)
|
||||
if (expectedType == null) return resolvedKtExpression
|
||||
|
||||
// todo run this approximation only once for call
|
||||
val argumentType = captureFromTypeParameterUpperBoundIfNeeded(expressionArgument.receiver.stableType, expectedType)
|
||||
|
||||
@@ -70,30 +73,31 @@ private fun checkExpressionArgument(
|
||||
val position = if (isReceiver) ReceiverConstraintPosition(expressionArgument) else ArgumentConstraintPosition(expressionArgument)
|
||||
if (expressionArgument.isSafeCall) {
|
||||
if (!csBuilder.addSubtypeConstraintIfCompatible(argumentType, expectedNullableType, position)) {
|
||||
return unstableSmartCastOrSubtypeError(expressionArgument.receiver.unstableType, expectedNullableType, position)?.let { return it }
|
||||
diagnosticsHolder.addDiagnosticIfNotNull(
|
||||
unstableSmartCastOrSubtypeError(expressionArgument.receiver.unstableType, expectedNullableType, position))
|
||||
}
|
||||
return null
|
||||
return resolvedKtExpression
|
||||
}
|
||||
|
||||
if (!csBuilder.addSubtypeConstraintIfCompatible(argumentType, expectedType, position)) {
|
||||
if (!isReceiver) {
|
||||
return unstableSmartCastOrSubtypeError(expressionArgument.receiver.unstableType, expectedType, position)?.let { return it }
|
||||
diagnosticsHolder.addDiagnosticIfNotNull(unstableSmartCastOrSubtypeError(expressionArgument.receiver.unstableType, expectedType, position))
|
||||
return resolvedKtExpression
|
||||
}
|
||||
|
||||
val unstableType = expressionArgument.receiver.unstableType
|
||||
if (unstableType != null && csBuilder.addSubtypeConstraintIfCompatible(unstableType, expectedType, position)) {
|
||||
return UnstableSmartCast(expressionArgument, unstableType)
|
||||
diagnosticsHolder.addDiagnostic(UnstableSmartCast(expressionArgument, unstableType))
|
||||
}
|
||||
else if (csBuilder.addSubtypeConstraintIfCompatible(argumentType, expectedNullableType, position)) {
|
||||
return UnsafeCallError(expressionArgument)
|
||||
diagnosticsHolder.addDiagnostic(UnsafeCallError(expressionArgument))
|
||||
}
|
||||
else {
|
||||
csBuilder.addSubtypeConstraint(argumentType, expectedType, position)
|
||||
return null
|
||||
}
|
||||
}
|
||||
|
||||
return null
|
||||
return resolvedKtExpression
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -131,30 +135,33 @@ private fun captureFromTypeParameterUpperBoundIfNeeded(argumentType: UnwrappedTy
|
||||
private fun checkSubCallArgument(
|
||||
csBuilder: ConstraintSystemBuilder,
|
||||
subCallArgument: SubKotlinCallArgument,
|
||||
expectedType: UnwrappedType,
|
||||
expectedType: UnwrappedType?,
|
||||
diagnosticsHolder: KotlinDiagnosticsHolder,
|
||||
isReceiver: Boolean
|
||||
): KotlinCallDiagnostic? {
|
||||
val resolvedCall = subCallArgument.resolvedCall
|
||||
val expectedNullableType = expectedType.makeNullableAsSpecified(true)
|
||||
val position = ArgumentConstraintPosition(subCallArgument)
|
||||
): ResolvedAtom {
|
||||
val subCallResult = subCallArgument.callResult
|
||||
|
||||
csBuilder.addInnerCall(resolvedCall)
|
||||
if (expectedType == null) return subCallResult
|
||||
|
||||
val expectedNullableType = expectedType.makeNullableAsSpecified(true)
|
||||
val position = if (isReceiver) ReceiverConstraintPosition(subCallArgument) else ArgumentConstraintPosition(subCallArgument)
|
||||
|
||||
// subArgument cannot has stable smartcast
|
||||
// return type can contains fixed type variables
|
||||
val currentReturnType = csBuilder.buildCurrentSubstitutor().safeSubstitute(subCallArgument.receiver.receiverValue.type.unwrap())
|
||||
if (subCallArgument.isSafeCall) {
|
||||
csBuilder.addSubtypeConstraint(currentReturnType, expectedNullableType, position)
|
||||
return null
|
||||
return subCallResult
|
||||
}
|
||||
|
||||
if (isReceiver && !csBuilder.addSubtypeConstraintIfCompatible(currentReturnType, expectedType, position) &&
|
||||
csBuilder.addSubtypeConstraintIfCompatible(currentReturnType, expectedNullableType, position)
|
||||
) {
|
||||
return UnsafeCallError(subCallArgument)
|
||||
diagnosticsHolder.addDiagnostic(UnsafeCallError(subCallArgument))
|
||||
return subCallResult
|
||||
}
|
||||
|
||||
csBuilder.addSubtypeConstraint(currentReturnType, expectedType, position)
|
||||
return null
|
||||
return subCallResult
|
||||
}
|
||||
|
||||
|
||||
+19
-11
@@ -16,12 +16,18 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.inference
|
||||
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.resolve.calls.components.PostponedArgumentsAnalyzer
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.NewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintPosition
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewTypeVariable
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.resolve.calls.model.CallableReferenceKotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.KotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.LHSResult
|
||||
import org.jetbrains.kotlin.resolve.calls.model.SubKotlinCallArgument
|
||||
import org.jetbrains.kotlin.types.TypeConstructor
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
interface ConstraintSystemOperation {
|
||||
val hasContradiction: Boolean
|
||||
@@ -36,23 +42,25 @@ interface ConstraintSystemOperation {
|
||||
}
|
||||
|
||||
interface ConstraintSystemBuilder : ConstraintSystemOperation {
|
||||
fun addInnerCall(innerCall: ResolvedKotlinCall.OnlyResolvedKotlinCall)
|
||||
fun addPostponedArgument(postponedArgument: PostponedKotlinCallArgument)
|
||||
|
||||
val builtIns: KotlinBuiltIns
|
||||
// if runOperations return true, then this operation will be applied, and function return true
|
||||
fun runTransaction(runOperations: ConstraintSystemOperation.() -> Boolean): Boolean
|
||||
|
||||
fun buildCurrentSubstitutor(): NewTypeSubstitutor
|
||||
|
||||
/**
|
||||
* This function removes variables for which we know exact type.
|
||||
* @return substitutor from typeVariable to result
|
||||
*/
|
||||
fun simplify(): NewTypeSubstitutor
|
||||
}
|
||||
|
||||
fun ConstraintSystemBuilder.addSubtypeConstraintIfCompatible(lowerType: UnwrappedType, upperType: UnwrappedType, position: ConstraintPosition) =
|
||||
runTransaction {
|
||||
if (!hasContradiction) addSubtypeConstraint(lowerType, upperType, position)
|
||||
!hasContradiction
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
fun PostponedArgumentsAnalyzer.Context.addSubsystemForArgument(argument: KotlinCallArgument?) {
|
||||
when (argument) {
|
||||
is SubKotlinCallArgument -> addOtherSystem(argument.callResult.constraintSystem)
|
||||
is CallableReferenceKotlinCallArgument -> {
|
||||
addSubsystemForArgument(argument.lhsResult.safeAs<LHSResult.Expression>()?.lshCallArgument)
|
||||
}
|
||||
}
|
||||
}
|
||||
+12
@@ -20,6 +20,7 @@ import org.jetbrains.kotlin.descriptors.CallableDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.NewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.NewTypeSubstitutorByConstructorMap
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewConstraintSystemImpl
|
||||
import org.jetbrains.kotlin.resolve.descriptorUtil.builtIns
|
||||
import org.jetbrains.kotlin.types.*
|
||||
|
||||
@@ -27,6 +28,17 @@ fun ConstraintStorage.buildCurrentSubstitutor() = NewTypeSubstitutorByConstructo
|
||||
it.key to it.value
|
||||
})
|
||||
|
||||
fun ConstraintStorage.buildResultingSubstitutor(): NewTypeSubstitutor {
|
||||
val currentSubstitutorMap = fixedTypeVariables.entries.associate {
|
||||
it.key to it.value
|
||||
}
|
||||
val uninferredSubstitutorMap = notFixedTypeVariables.entries.associate { (freshTypeConstructor, typeVariable) ->
|
||||
freshTypeConstructor to ErrorUtils.createErrorTypeWithCustomConstructor("Uninferred type", typeVariable.typeVariable.freshTypeConstructor)
|
||||
}
|
||||
|
||||
return NewTypeSubstitutorByConstructorMap(currentSubstitutorMap + uninferredSubstitutorMap)
|
||||
}
|
||||
|
||||
val CallableDescriptor.returnTypeOrNothing: UnwrappedType
|
||||
get() {
|
||||
returnType?.let { return it.unwrap() }
|
||||
|
||||
+3
-1
@@ -16,6 +16,7 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.inference
|
||||
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.resolve.calls.components.KotlinCallCompleter
|
||||
import org.jetbrains.kotlin.resolve.calls.components.PostponedArgumentsAnalyzer
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter
|
||||
@@ -23,13 +24,14 @@ import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.model.KotlinCallDiagnostic
|
||||
|
||||
interface NewConstraintSystem {
|
||||
val builtIns: KotlinBuiltIns
|
||||
val hasContradiction: Boolean
|
||||
val diagnostics: List<KotlinCallDiagnostic>
|
||||
|
||||
fun getBuilder(): ConstraintSystemBuilder
|
||||
|
||||
// after this method we shouldn't mutate system via ConstraintSystemBuilder
|
||||
fun asReadOnlyStorage(): ConstraintStorage
|
||||
fun asCallCompleterContext(): KotlinCallCompleter.Context
|
||||
fun asConstraintSystemCompleterContext(): KotlinConstraintSystemCompleter.Context
|
||||
fun asPostponedArgumentsAnalyzerContext(): PostponedArgumentsAnalyzer.Context
|
||||
}
|
||||
+57
-20
@@ -22,7 +22,9 @@ import org.jetbrains.kotlin.resolve.calls.inference.model.VariableWithConstraint
|
||||
import org.jetbrains.kotlin.resolve.calls.model.*
|
||||
import org.jetbrains.kotlin.types.TypeConstructor
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.utils.addIfNotNull
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.firstIsInstanceOrNull
|
||||
import org.jetbrains.kotlin.utils.addToStdlib.safeAs
|
||||
|
||||
class KotlinConstraintSystemCompleter(
|
||||
private val resultTypeResolver: ResultTypeResolver,
|
||||
@@ -34,7 +36,6 @@ class KotlinConstraintSystemCompleter(
|
||||
}
|
||||
|
||||
interface Context : VariableFixationFinder.Context, ResultTypeResolver.Context {
|
||||
override val postponedArguments: List<PostponedKotlinCallArgument>
|
||||
override val notFixedTypeVariables: Map<TypeConstructor, VariableWithConstraints>
|
||||
|
||||
// type can be proper if it not contains not fixed type variables
|
||||
@@ -48,23 +49,27 @@ class KotlinConstraintSystemCompleter(
|
||||
fun runCompletion(
|
||||
c: Context,
|
||||
completionMode: ConstraintSystemCompletionMode,
|
||||
topLevelPrimitive: ResolvedAtom,
|
||||
topLevelType: UnwrappedType,
|
||||
analyze: (PostponedKotlinCallArgument) -> Unit
|
||||
analyze: (PostponedResolvedAtom) -> Unit
|
||||
) {
|
||||
while (true) {
|
||||
if (analyzePostponeArgumentIfPossible(c, analyze)) continue
|
||||
if (analyzePostponeArgumentIfPossible(c, topLevelPrimitive, analyze)) continue
|
||||
|
||||
val variableForFixation = variableFixationFinder.findFirstVariableForFixation(c, completionMode, topLevelType)
|
||||
val allTypeVariables = getOrderedAllTypeVariables(c, topLevelPrimitive)
|
||||
val postponedKtPrimitives = getOrderedNotAnalyzedPostponedArguments(topLevelPrimitive)
|
||||
val variableForFixation = variableFixationFinder.findFirstVariableForFixation(
|
||||
c, allTypeVariables, postponedKtPrimitives, completionMode, topLevelType)
|
||||
|
||||
if (shouldWeForceCallableReferenceResolution(completionMode, variableForFixation)) {
|
||||
if (forceCallableReferenceResolution(c, analyze)) continue
|
||||
if (forceCallableReferenceResolution(topLevelPrimitive, analyze)) continue
|
||||
}
|
||||
|
||||
if (variableForFixation != null) {
|
||||
if (variableForFixation.hasProperConstraint || completionMode == ConstraintSystemCompletionMode.FULL) {
|
||||
val variableWithConstraints = c.notFixedTypeVariables[variableForFixation.variable]!!
|
||||
|
||||
fixVariable(c, topLevelType, variableWithConstraints)
|
||||
fixVariable(c, topLevelType, variableWithConstraints, postponedKtPrimitives)
|
||||
|
||||
if (!variableForFixation.hasProperConstraint) {
|
||||
c.addError(NotEnoughInformationForTypeParameter(variableWithConstraints.typeVariable))
|
||||
@@ -77,7 +82,7 @@ class KotlinConstraintSystemCompleter(
|
||||
|
||||
if (completionMode == ConstraintSystemCompletionMode.FULL) {
|
||||
// force resolution for all not-analyzed argument's
|
||||
c.postponedArguments.filterNot { it.analyzed }.forEach(analyze)
|
||||
getOrderedNotAnalyzedPostponedArguments(topLevelPrimitive).forEach(analyze)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -92,8 +97,8 @@ class KotlinConstraintSystemCompleter(
|
||||
}
|
||||
|
||||
// true if we do analyze
|
||||
private fun analyzePostponeArgumentIfPossible(c: Context, analyze: (PostponedKotlinCallArgument) -> Unit): Boolean {
|
||||
for (argument in getOrderedNotAnalyzedPostponedArguments(c)) {
|
||||
private fun analyzePostponeArgumentIfPossible(c: Context, topLevelPrimitive: ResolvedAtom, analyze: (PostponedResolvedAtom) -> Unit): Boolean {
|
||||
for (argument in getOrderedNotAnalyzedPostponedArguments(topLevelPrimitive)) {
|
||||
if (canWeAnalyzeIt(c, argument)) {
|
||||
analyze(argument)
|
||||
return true
|
||||
@@ -103,24 +108,55 @@ class KotlinConstraintSystemCompleter(
|
||||
}
|
||||
|
||||
// true if we find some callable reference and run resolution for it. Note that such resolution can be unsuccessful
|
||||
private fun forceCallableReferenceResolution(c: Context, analyze: (PostponedKotlinCallArgument) -> Unit): Boolean {
|
||||
val callableReferenceArgument = getOrderedNotAnalyzedPostponedArguments(c).
|
||||
firstIsInstanceOrNull<PostponedCallableReferenceArgument>() ?: return false
|
||||
private fun forceCallableReferenceResolution(topLevelPrimitive: ResolvedAtom, analyze: (PostponedResolvedAtom) -> Unit): Boolean {
|
||||
val callableReferenceArgument = getOrderedNotAnalyzedPostponedArguments(topLevelPrimitive).
|
||||
firstIsInstanceOrNull<ResolvedCallableReferenceAtom>() ?: return false
|
||||
|
||||
analyze(callableReferenceArgument)
|
||||
return true
|
||||
}
|
||||
|
||||
private fun getOrderedNotAnalyzedPostponedArguments(c: Context): List<PostponedKotlinCallArgument> {
|
||||
val notAnalyzedArguments = c.postponedArguments.filterNot { it.analyzed }
|
||||
private fun getOrderedNotAnalyzedPostponedArguments(topLevelPrimitive: ResolvedAtom): List<PostponedResolvedAtom> {
|
||||
fun ResolvedAtom.process(to: MutableList<PostponedResolvedAtom>) {
|
||||
to.addIfNotNull(this.safeAs<PostponedResolvedAtom>()?.takeUnless { it.analyzed })
|
||||
|
||||
// todo insert logic here
|
||||
return notAnalyzedArguments
|
||||
if (analyzed) {
|
||||
subResolvedAtoms.forEach { it.process(to) }
|
||||
}
|
||||
}
|
||||
return arrayListOf<PostponedResolvedAtom>().apply { topLevelPrimitive.process(this) }
|
||||
}
|
||||
|
||||
private fun getOrderedAllTypeVariables(c: Context, topLevelPrimitive: ResolvedAtom) : List<TypeConstructor> {
|
||||
fun ResolvedAtom.process(to: MutableList<TypeConstructor>) {
|
||||
val typeVariables = when (this) {
|
||||
is ResolvedCallAtom -> substitutor.freshVariables
|
||||
is ResolvedCallableReferenceAtom -> candidate?.freshSubstitutor?.freshVariables.orEmpty()
|
||||
is ResolvedLambdaAtom -> listOfNotNull(typeVariableForLambdaReturnType)
|
||||
else -> emptyList()
|
||||
}
|
||||
typeVariables.mapNotNullTo(to) {
|
||||
val typeConstructor = it.freshTypeConstructor
|
||||
typeConstructor.takeIf { c.notFixedTypeVariables.containsKey(typeConstructor) }
|
||||
}
|
||||
|
||||
if (analyzed) {
|
||||
subResolvedAtoms.forEach { it.process(to) }
|
||||
}
|
||||
}
|
||||
val result = arrayListOf<TypeConstructor>().apply { topLevelPrimitive.process(this) }
|
||||
|
||||
assert(result.size == c.notFixedTypeVariables.size) {
|
||||
val notFoundTypeVariables = c.notFixedTypeVariables.keys.toMutableSet().removeAll(result)
|
||||
"Not all type variables found: $notFoundTypeVariables"
|
||||
}
|
||||
|
||||
return result
|
||||
}
|
||||
|
||||
|
||||
private fun canWeAnalyzeIt(c: Context, argument: PostponedKotlinCallArgument): Boolean {
|
||||
if (argument is PostponedCollectionLiteralArgument || argument.analyzed) return false
|
||||
private fun canWeAnalyzeIt(c: Context, argument: PostponedResolvedAtom): Boolean {
|
||||
if (argument.analyzed) return false
|
||||
|
||||
return argument.inputTypes.all { c.canBeProper(it) }
|
||||
}
|
||||
@@ -128,9 +164,10 @@ class KotlinConstraintSystemCompleter(
|
||||
private fun fixVariable(
|
||||
c: Context,
|
||||
topLevelType: UnwrappedType,
|
||||
variableWithConstraints: VariableWithConstraints
|
||||
variableWithConstraints: VariableWithConstraints,
|
||||
postponedResolveKtPrimitives: List<PostponedResolvedAtom>
|
||||
) {
|
||||
val direction = TypeVariableDirectionCalculator(c, topLevelType).getDirection(variableWithConstraints)
|
||||
val direction = TypeVariableDirectionCalculator(c, postponedResolveKtPrimitives, topLevelType).getDirection(variableWithConstraints)
|
||||
|
||||
val resultType = resultTypeResolver.findResultType(c, variableWithConstraints, direction)
|
||||
|
||||
+4
@@ -150,4 +150,8 @@ class FreshVariableNewTypeSubstitutor(val freshVariables: List<TypeVariableFromC
|
||||
|
||||
return typeVariable.defaultType
|
||||
}
|
||||
|
||||
companion object {
|
||||
val Empty = FreshVariableNewTypeSubstitutor(emptyList())
|
||||
}
|
||||
}
|
||||
+3
-2
@@ -16,6 +16,7 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.inference.components
|
||||
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.descriptors.TypeParameterDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemBuilder
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewConstraintSystemImpl
|
||||
@@ -29,8 +30,8 @@ import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.asTypeProjection
|
||||
|
||||
|
||||
class SimpleConstraintSystemImpl(constraintInjector: ConstraintInjector, resultTypeResolver: ResultTypeResolver) : SimpleConstraintSystem {
|
||||
val csBuilder: ConstraintSystemBuilder = NewConstraintSystemImpl(constraintInjector, resultTypeResolver).getBuilder()
|
||||
class SimpleConstraintSystemImpl(constraintInjector: ConstraintInjector, builtIns: KotlinBuiltIns) : SimpleConstraintSystem {
|
||||
val csBuilder: ConstraintSystemBuilder = NewConstraintSystemImpl(constraintInjector, builtIns).getBuilder()
|
||||
|
||||
override fun registerTypeVariables(typeParameters: Collection<TypeParameterDescriptor>): TypeSubstitutor {
|
||||
val substitutionMap = typeParameters.associate {
|
||||
|
||||
+4
-4
@@ -17,7 +17,7 @@
|
||||
package org.jetbrains.kotlin.resolve.calls.inference.components
|
||||
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.VariableWithConstraints
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedKotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedResolvedAtom
|
||||
import org.jetbrains.kotlin.types.TypeConstructor
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.contains
|
||||
@@ -25,7 +25,7 @@ import org.jetbrains.kotlin.utils.SmartSet
|
||||
|
||||
class TypeVariableDependencyInformationProvider(
|
||||
private val notFixedTypeVariables: Map<TypeConstructor, VariableWithConstraints>,
|
||||
private val postponedArguments: List<PostponedKotlinCallArgument>,
|
||||
private val postponedKtPrimitives: List<PostponedResolvedAtom>,
|
||||
private val topLevelType: UnwrappedType?
|
||||
) {
|
||||
// not oriented edges
|
||||
@@ -71,7 +71,7 @@ class TypeVariableDependencyInformationProvider(
|
||||
postponeArgumentsEdges.getOrPut(from) { hashSetOf() }.add(to)
|
||||
}
|
||||
|
||||
for (argument in postponedArguments) {
|
||||
for (argument in postponedKtPrimitives) {
|
||||
if (argument.analyzed) continue
|
||||
|
||||
val typeVariablesInOutputType = SmartSet.create<TypeConstructor>()
|
||||
@@ -89,7 +89,7 @@ class TypeVariableDependencyInformationProvider(
|
||||
}
|
||||
|
||||
private fun computeRelatedToAllOutputTypes() {
|
||||
for (argument in postponedArguments) {
|
||||
for (argument in postponedKtPrimitives) {
|
||||
if (argument.analyzed) continue
|
||||
(argument.outputType ?: continue).forAllMyTypeVariables {
|
||||
addAllRelatedNodes(relatedToAllOutputTypes, it, includePostponedEdges = false)
|
||||
|
||||
+4
-2
@@ -19,6 +19,7 @@ package org.jetbrains.kotlin.resolve.calls.inference.components
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.Constraint
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintKind
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.VariableWithConstraints
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedResolvedAtom
|
||||
import org.jetbrains.kotlin.types.FlexibleType
|
||||
import org.jetbrains.kotlin.types.SimpleType
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
@@ -31,7 +32,8 @@ import org.jetbrains.kotlin.utils.SmartList
|
||||
private typealias Variable = VariableWithConstraints
|
||||
|
||||
class TypeVariableDirectionCalculator(
|
||||
val c: VariableFixationFinder.Context,
|
||||
private val c: VariableFixationFinder.Context,
|
||||
private val postponedKtPrimitives: List<PostponedResolvedAtom>,
|
||||
topLevelType: UnwrappedType
|
||||
) {
|
||||
enum class ResolveDirection {
|
||||
@@ -57,7 +59,7 @@ class TypeVariableDirectionCalculator(
|
||||
topReturnType.visitType(ResolveDirection.TO_SUBTYPE) { variableWithConstraints, direction ->
|
||||
enterToNode(variableWithConstraints, direction)
|
||||
}
|
||||
for (postponedArgument in c.postponedArguments) {
|
||||
for (postponedArgument in postponedKtPrimitives) {
|
||||
for (inputType in postponedArgument.inputTypes) {
|
||||
inputType.visitType(ResolveDirection.TO_SUBTYPE) { variableWithConstraints, direction ->
|
||||
enterToNode(variableWithConstraints, direction)
|
||||
|
||||
+10
-10
@@ -17,11 +17,11 @@
|
||||
package org.jetbrains.kotlin.resolve.calls.inference.components
|
||||
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter.ConstraintSystemCompletionMode
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter.ConstraintSystemCompletionMode.*
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter.ConstraintSystemCompletionMode.PARTIAL
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.Constraint
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.DeclaredUpperBoundConstraintPosition
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.VariableWithConstraints
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedKotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedResolvedAtom
|
||||
import org.jetbrains.kotlin.types.TypeConstructor
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.contains
|
||||
@@ -29,16 +29,17 @@ import org.jetbrains.kotlin.types.typeUtil.contains
|
||||
class VariableFixationFinder {
|
||||
interface Context {
|
||||
val notFixedTypeVariables: Map<TypeConstructor, VariableWithConstraints>
|
||||
val postponedArguments: List<PostponedKotlinCallArgument>
|
||||
}
|
||||
|
||||
data class VariableForFixation(val variable: TypeConstructor, val hasProperConstraint: Boolean)
|
||||
|
||||
fun findFirstVariableForFixation(
|
||||
c: Context,
|
||||
allTypeVariables: List<TypeConstructor>,
|
||||
postponedKtPrimitives: List<PostponedResolvedAtom>,
|
||||
completionMode: ConstraintSystemCompletionMode,
|
||||
topLevelType: UnwrappedType
|
||||
): VariableForFixation? = c.findTypeVariableForFixation(completionMode, topLevelType)
|
||||
): VariableForFixation? = c.findTypeVariableForFixation(allTypeVariables, postponedKtPrimitives, completionMode, topLevelType)
|
||||
|
||||
private enum class TypeVariableFixationReadiness {
|
||||
FORBIDDEN,
|
||||
@@ -52,6 +53,7 @@ class VariableFixationFinder {
|
||||
variable: TypeConstructor,
|
||||
dependencyProvider: TypeVariableDependencyInformationProvider
|
||||
): TypeVariableFixationReadiness = when {
|
||||
!notFixedTypeVariables.contains(variable) ||
|
||||
dependencyProvider.isVariableRelatedToTopLevelType(variable) -> TypeVariableFixationReadiness.FORBIDDEN
|
||||
!variableHasProperArgumentConstraints(variable) -> TypeVariableFixationReadiness.WITHOUT_PROPER_ARGUMENT_CONSTRAINT
|
||||
dependencyProvider.isVariableRelatedToAnyOutputType(variable) -> TypeVariableFixationReadiness.RELATED_TO_ANY_OUTPUT_TYPE
|
||||
@@ -60,14 +62,15 @@ class VariableFixationFinder {
|
||||
}
|
||||
|
||||
private fun Context.findTypeVariableForFixation(
|
||||
allTypeVariables: List<TypeConstructor>,
|
||||
postponedKtPrimitives: List<PostponedResolvedAtom>,
|
||||
completionMode: ConstraintSystemCompletionMode,
|
||||
topLevelType: UnwrappedType
|
||||
): VariableForFixation? {
|
||||
val dependencyProvider = TypeVariableDependencyInformationProvider(notFixedTypeVariables, postponedArguments,
|
||||
val dependencyProvider = TypeVariableDependencyInformationProvider(notFixedTypeVariables, postponedKtPrimitives,
|
||||
topLevelType.takeIf { completionMode == PARTIAL })
|
||||
|
||||
val initialOrder = notFixedTypeVariables.keys.sortByInitialOrder()
|
||||
val candidate = initialOrder.maxBy { getTypeVariableReadiness(it, dependencyProvider) } ?: return null
|
||||
val candidate = allTypeVariables.maxBy { getTypeVariableReadiness(it, dependencyProvider) } ?: return null
|
||||
val candidateReadiness = getTypeVariableReadiness(candidate, dependencyProvider)
|
||||
return when (candidateReadiness) {
|
||||
TypeVariableFixationReadiness.FORBIDDEN -> null
|
||||
@@ -94,7 +97,4 @@ class VariableFixationFinder {
|
||||
private fun Context.isProperType(type: UnwrappedType): Boolean =
|
||||
!type.contains { notFixedTypeVariables.containsKey(it.constructor) }
|
||||
|
||||
private fun Collection<TypeConstructor>.sortByInitialOrder(): List<TypeConstructor> =
|
||||
sortedBy { toString() } // todo
|
||||
|
||||
}
|
||||
+2
-2
@@ -50,9 +50,9 @@ class FixVariableConstraintPosition(val variable: NewTypeVariable) : ConstraintP
|
||||
class KnownTypeParameterConstraintPosition(val typeArgument: KotlinType) : ConstraintPosition() {
|
||||
override fun toString() = "TypeArgument $typeArgument"
|
||||
}
|
||||
class LambdaArgumentConstraintPosition(val lambdaArgument: PostponedLambdaArgument) : ConstraintPosition() {
|
||||
class LambdaArgumentConstraintPosition(val lambda: ResolvedLambdaAtom) : ConstraintPosition() {
|
||||
override fun toString(): String {
|
||||
return "LambdaArgument $lambdaArgument"
|
||||
return "LambdaArgument $lambda"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
-4
@@ -52,8 +52,6 @@ interface ConstraintStorage {
|
||||
val maxTypeDepthFromInitialConstraints: Int
|
||||
val errors: List<KotlinCallDiagnostic>
|
||||
val fixedTypeVariables: Map<TypeConstructor, UnwrappedType>
|
||||
val postponedArguments: List<PostponedKotlinCallArgument>
|
||||
val innerCalls: List<ResolvedKotlinCall.OnlyResolvedKotlinCall>
|
||||
|
||||
object Empty : ConstraintStorage {
|
||||
override val allTypeVariables: Map<TypeConstructor, NewTypeVariable> get() = emptyMap()
|
||||
@@ -62,8 +60,6 @@ interface ConstraintStorage {
|
||||
override val maxTypeDepthFromInitialConstraints: Int get() = 1
|
||||
override val errors: List<KotlinCallDiagnostic> get() = emptyList()
|
||||
override val fixedTypeVariables: Map<TypeConstructor, UnwrappedType> get() = emptyMap()
|
||||
override val postponedArguments: List<PostponedKotlinCallArgument> get() = emptyList()
|
||||
override val innerCalls: List<ResolvedKotlinCall.OnlyResolvedKotlinCall> get() = emptyList()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
-4
@@ -18,8 +18,6 @@ package org.jetbrains.kotlin.resolve.calls.inference.model
|
||||
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.trimToSize
|
||||
import org.jetbrains.kotlin.resolve.calls.model.KotlinCallDiagnostic
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedKotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.ResolvedKotlinCall
|
||||
import org.jetbrains.kotlin.types.TypeConstructor
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import java.util.*
|
||||
@@ -105,6 +103,4 @@ internal class MutableConstraintStorage : ConstraintStorage {
|
||||
override var maxTypeDepthFromInitialConstraints: Int = 1
|
||||
override val errors: MutableList<KotlinCallDiagnostic> = ArrayList()
|
||||
override val fixedTypeVariables: MutableMap<TypeConstructor, UnwrappedType> = LinkedHashMap()
|
||||
override val postponedArguments: MutableList<PostponedKotlinCallArgument> = ArrayList()
|
||||
override val innerCalls: MutableList<ResolvedKotlinCall.OnlyResolvedKotlinCall> = ArrayList()
|
||||
}
|
||||
+11
-89
@@ -16,28 +16,28 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.inference.model
|
||||
|
||||
import org.jetbrains.kotlin.resolve.calls.components.KotlinCallCompleter
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.resolve.calls.components.PostponedArgumentsAnalyzer
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.*
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.*
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ConstraintInjector
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.KotlinConstraintSystemCompleter
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.NewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ResultTypeResolver
|
||||
import org.jetbrains.kotlin.resolve.calls.model.KotlinCallDiagnostic
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedKotlinCallArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.PostponedLambdaArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.model.ResolvedKotlinCall
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.isSuccess
|
||||
import org.jetbrains.kotlin.types.ErrorUtils
|
||||
import org.jetbrains.kotlin.types.TypeConstructor
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.contains
|
||||
import org.jetbrains.kotlin.utils.SmartList
|
||||
import java.util.*
|
||||
|
||||
class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val resultTypeResolver: ResultTypeResolver):
|
||||
class NewConstraintSystemImpl(
|
||||
private val constraintInjector: ConstraintInjector,
|
||||
override val builtIns: KotlinBuiltIns
|
||||
):
|
||||
NewConstraintSystem,
|
||||
ConstraintSystemBuilder,
|
||||
ConstraintInjector.Context,
|
||||
ResultTypeResolver.Context,
|
||||
KotlinCallCompleter.Context,
|
||||
KotlinConstraintSystemCompleter.Context,
|
||||
PostponedArgumentsAnalyzer.Context
|
||||
{
|
||||
@@ -69,12 +69,6 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
|
||||
return storage
|
||||
}
|
||||
|
||||
override fun asCallCompleterContext(): KotlinCallCompleter.Context {
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
state = State.COMPLETION
|
||||
return this
|
||||
}
|
||||
|
||||
override fun asConstraintSystemCompleterContext() = apply { checkState(State.BUILDING) }
|
||||
|
||||
override fun asPostponedArgumentsAnalyzerContext() = apply { checkState(State.BUILDING) }
|
||||
@@ -150,51 +144,11 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
|
||||
return false
|
||||
}
|
||||
|
||||
override fun addPostponedArgument(postponedArgument: PostponedKotlinCallArgument) {
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
storage.postponedArguments.add(postponedArgument)
|
||||
}
|
||||
|
||||
private fun getVariablesForFixation(): Map<NewTypeVariable, UnwrappedType> {
|
||||
val fixedVariables = LinkedHashMap<NewTypeVariable, UnwrappedType>()
|
||||
|
||||
for (variableWithConstrains in storage.notFixedTypeVariables.values) {
|
||||
val resultType = resultTypeResolver.findResultIfThereIsEqualsConstraint(
|
||||
apply { checkState(State.BUILDING) },
|
||||
variableWithConstrains,
|
||||
allowedFixToNotProperType = false
|
||||
)
|
||||
if (resultType != null) {
|
||||
fixedVariables[variableWithConstrains.typeVariable] = resultType
|
||||
}
|
||||
}
|
||||
return fixedVariables
|
||||
}
|
||||
|
||||
override fun simplify(): NewTypeSubstitutor {
|
||||
checkState(State.BUILDING)
|
||||
|
||||
var fixedVariables = getVariablesForFixation()
|
||||
while (fixedVariables.isNotEmpty()) {
|
||||
for ((variable, resultType) in fixedVariables) {
|
||||
fixVariable(variable, resultType)
|
||||
}
|
||||
fixedVariables = getVariablesForFixation()
|
||||
}
|
||||
|
||||
return storage.buildCurrentSubstitutor()
|
||||
}
|
||||
|
||||
// ConstraintSystemBuilder, KotlinConstraintSystemCompleter.Context
|
||||
override val hasContradiction: Boolean
|
||||
get() = diagnostics.any { !it.candidateApplicability.isSuccess }.apply { checkState(State.BUILDING, State.COMPLETION, State.TRANSACTION) }
|
||||
get() = diagnostics.any { !it.candidateApplicability.isSuccess }.apply { checkState(State.FREEZED, State.BUILDING, State.COMPLETION, State.TRANSACTION) }
|
||||
|
||||
// ConstraintSystemBuilder
|
||||
override fun addInnerCall(innerCall: ResolvedKotlinCall.OnlyResolvedKotlinCall) {
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
storage.innerCalls.add(innerCall)
|
||||
|
||||
val otherSystem = innerCall.candidate.lastCall.constraintSystem.asReadOnlyStorage()
|
||||
override fun addOtherSystem(otherSystem: ConstraintStorage) {
|
||||
storage.allTypeVariables.putAll(otherSystem.allTypeVariables)
|
||||
for ((variable, constraints) in otherSystem.notFixedTypeVariables) {
|
||||
notFixedTypeVariables[variable] = MutableVariableWithConstraints(constraints.typeVariable, constraints.constraints)
|
||||
@@ -203,11 +157,8 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
|
||||
storage.maxTypeDepthFromInitialConstraints = Math.max(storage.maxTypeDepthFromInitialConstraints, otherSystem.maxTypeDepthFromInitialConstraints)
|
||||
storage.errors.addAll(otherSystem.errors)
|
||||
storage.fixedTypeVariables.putAll(otherSystem.fixedTypeVariables)
|
||||
storage.postponedArguments.addAll(otherSystem.postponedArguments)
|
||||
storage.innerCalls.addAll(otherSystem.innerCalls)
|
||||
}
|
||||
|
||||
|
||||
// ResultTypeResolver.Context, ConstraintSystemBuilder
|
||||
override fun isProperType(type: UnwrappedType): Boolean {
|
||||
checkState(State.BUILDING, State.COMPLETION, State.TRANSACTION)
|
||||
@@ -246,16 +197,6 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
|
||||
storage.errors.add(error)
|
||||
}
|
||||
|
||||
// KotlinCallCompleter.Context, FixationOrderCalculator.Context
|
||||
override val lambdaArguments: List<PostponedLambdaArgument> get() {
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
return storage.postponedArguments.filterIsInstance<PostponedLambdaArgument>()
|
||||
}
|
||||
|
||||
// FixationOrderCalculator.Context, KotlinCallCompleter.Context, KotlinConstraintSystemCompleter.Context
|
||||
override val postponedArguments: List<PostponedKotlinCallArgument>
|
||||
get() = storage.postponedArguments.apply { checkState(State.BUILDING, State.COMPLETION) }
|
||||
|
||||
// KotlinConstraintSystemCompleter.Context
|
||||
override fun fixVariable(variable: NewTypeVariable, resultType: UnwrappedType) {
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
@@ -272,12 +213,6 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
|
||||
storage.fixedTypeVariables[variable.freshTypeConstructor] = resultType
|
||||
}
|
||||
|
||||
// KotlinCallCompleter.Context
|
||||
override val innerCalls: List<ResolvedKotlinCall.OnlyResolvedKotlinCall> get() {
|
||||
checkState(State.COMPLETION)
|
||||
return storage.innerCalls
|
||||
}
|
||||
|
||||
// KotlinConstraintSystemCompleter.Context, PostponedArgumentsAnalyzer.Context
|
||||
override fun canBeProper(type: UnwrappedType): Boolean {
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
@@ -289,17 +224,4 @@ class NewConstraintSystemImpl(val constraintInjector: ConstraintInjector, val re
|
||||
checkState(State.BUILDING, State.COMPLETION)
|
||||
return storage.buildCurrentSubstitutor()
|
||||
}
|
||||
|
||||
// KotlinCallCompleter.Context
|
||||
override fun buildResultingSubstitutor(): NewTypeSubstitutor {
|
||||
checkState(State.COMPLETION)
|
||||
val currentSubstitutorMap = storage.fixedTypeVariables.entries.associate {
|
||||
it.key to it.value
|
||||
}
|
||||
val uninferredSubstitutorMap = storage.notFixedTypeVariables.entries.associate { (freshTypeConstructor, typeVariable) ->
|
||||
freshTypeConstructor to ErrorUtils.createErrorTypeWithCustomConstructor("Uninferred type", typeVariable.typeVariable.freshTypeConstructor)
|
||||
}
|
||||
|
||||
return NewTypeSubstitutorByConstructorMap(currentSubstitutorMap + uninferredSubstitutorMap)
|
||||
}
|
||||
}
|
||||
@@ -19,7 +19,7 @@ package org.jetbrains.kotlin.resolve.calls.model
|
||||
import org.jetbrains.kotlin.name.Name
|
||||
|
||||
|
||||
interface KotlinCall {
|
||||
interface KotlinCall : ResolutionAtom {
|
||||
val callKind: KotlinCallKind
|
||||
|
||||
val explicitReceiver: ReceiverKotlinCallArgument?
|
||||
@@ -43,6 +43,18 @@ private fun SimpleKotlinCallArgument.checkReceiverInvariants() {
|
||||
assert(argumentName == null) {
|
||||
"Argument name should be null for receiver: $this, but it is $argumentName"
|
||||
}
|
||||
checkArgumentInvariants()
|
||||
}
|
||||
|
||||
private fun KotlinCallArgument.checkArgumentInvariants() {
|
||||
if (this is SubKotlinCallArgument) {
|
||||
assert(callResult.type == CallResolutionResult.Type.PARTIAL) {
|
||||
"SubCall should has type PARTIAL: $callResult"
|
||||
}
|
||||
assert(callResult.resultCallAtom != null) {
|
||||
"SubCall should has resultCallAtom: $callResult"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fun KotlinCall.checkCallInvariants() {
|
||||
@@ -52,6 +64,8 @@ fun KotlinCall.checkCallInvariants() {
|
||||
|
||||
(explicitReceiver as? SimpleKotlinCallArgument)?.checkReceiverInvariants()
|
||||
dispatchReceiverForInvokeExtension?.checkReceiverInvariants()
|
||||
argumentsInParenthesis.forEach(KotlinCallArgument::checkArgumentInvariants)
|
||||
externalArgument?.checkArgumentInvariants()
|
||||
|
||||
if (callKind != KotlinCallKind.FUNCTION) {
|
||||
assert(externalArgument == null) {
|
||||
|
||||
+7
-4
@@ -26,12 +26,15 @@ import org.jetbrains.kotlin.resolve.scopes.receivers.TransientReceiver
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
|
||||
|
||||
interface ReceiverKotlinCallArgument {
|
||||
interface ReceiverKotlinCallArgument : KotlinCallArgument {
|
||||
val receiver: DetailedReceiver
|
||||
}
|
||||
|
||||
class QualifierReceiverKotlinCallArgument(override val receiver: QualifierReceiver) : ReceiverKotlinCallArgument {
|
||||
override fun toString() = "$receiver"
|
||||
|
||||
override val isSpread get() = false
|
||||
override val argumentName: Name? get() = null
|
||||
}
|
||||
|
||||
interface KotlinCallArgument {
|
||||
@@ -39,7 +42,7 @@ interface KotlinCallArgument {
|
||||
val argumentName: Name?
|
||||
}
|
||||
|
||||
interface PostponableKotlinCallArgument : KotlinCallArgument
|
||||
interface PostponableKotlinCallArgument : KotlinCallArgument, ResolutionAtom
|
||||
|
||||
interface SimpleKotlinCallArgument : KotlinCallArgument, ReceiverKotlinCallArgument {
|
||||
override val receiver: ReceiverValueWithSmartCastInfo
|
||||
@@ -47,10 +50,10 @@ interface SimpleKotlinCallArgument : KotlinCallArgument, ReceiverKotlinCallArgum
|
||||
val isSafeCall: Boolean
|
||||
}
|
||||
|
||||
interface ExpressionKotlinCallArgument : SimpleKotlinCallArgument
|
||||
interface ExpressionKotlinCallArgument : SimpleKotlinCallArgument, ResolutionAtom
|
||||
|
||||
interface SubKotlinCallArgument : SimpleKotlinCallArgument {
|
||||
val resolvedCall: ResolvedKotlinCall.OnlyResolvedKotlinCall
|
||||
val callResult: CallResolutionResult
|
||||
}
|
||||
|
||||
interface LambdaKotlinCallArgument : PostponableKotlinCallArgument {
|
||||
|
||||
+16
@@ -154,3 +154,19 @@ object AbstractSuperCall : KotlinCallDiagnostic(RUNTIME_ERROR) {
|
||||
reporter.onCall(this)
|
||||
}
|
||||
}
|
||||
|
||||
// candidates result
|
||||
class NoneCandidatesCallDiagnostic(val kotlinCall: KotlinCall) : KotlinCallDiagnostic(INAPPLICABLE) {
|
||||
override fun report(reporter: DiagnosticReporter) {
|
||||
reporter.onCall(this)
|
||||
}
|
||||
}
|
||||
|
||||
class ManyCandidatesCallDiagnostic(
|
||||
val kotlinCall: KotlinCall,
|
||||
val candidates: Collection<KotlinResolutionCandidate>
|
||||
) : KotlinCallDiagnostic(INAPPLICABLE) {
|
||||
override fun report(reporter: DiagnosticReporter) {
|
||||
reporter.onCall(this)
|
||||
}
|
||||
}
|
||||
+82
-21
@@ -16,11 +16,15 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.model
|
||||
|
||||
import org.jetbrains.kotlin.builtins.KotlinBuiltIns
|
||||
import org.jetbrains.kotlin.builtins.ReflectionTypes
|
||||
import org.jetbrains.kotlin.descriptors.CallableDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.FunctionDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.components.*
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.addSubsystemForArgument
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ConstraintInjector
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.ResultTypeResolver
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewConstraintSystemImpl
|
||||
import org.jetbrains.kotlin.resolve.calls.tasks.ExplicitReceiverKind
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.*
|
||||
import org.jetbrains.kotlin.resolve.descriptorUtil.hasDynamicExtensionAnnotation
|
||||
@@ -34,16 +38,29 @@ class KotlinCallComponents(
|
||||
val statelessCallbacks: KotlinResolutionStatelessCallbacks,
|
||||
val argumentsToParametersMapper: ArgumentsToParametersMapper,
|
||||
val typeArgumentsToParametersMapper: TypeArgumentsToParametersMapper,
|
||||
val resultTypeResolver: ResultTypeResolver,
|
||||
val constraintInjector: ConstraintInjector,
|
||||
val reflectionTypes: ReflectionTypes
|
||||
val reflectionTypes: ReflectionTypes,
|
||||
val builtIns: KotlinBuiltIns
|
||||
)
|
||||
|
||||
class SimpleCandidateFactory(
|
||||
val callComponents: KotlinCallComponents,
|
||||
val scopeTower: ImplicitScopeTower,
|
||||
val kotlinCall: KotlinCall
|
||||
): CandidateFactory<SimpleKotlinResolutionCandidate> {
|
||||
): CandidateFactory<KotlinResolutionCandidate> {
|
||||
val baseSystem: ConstraintStorage
|
||||
|
||||
init {
|
||||
val baseSystem = NewConstraintSystemImpl(callComponents.constraintInjector, callComponents.builtIns)
|
||||
baseSystem.addSubsystemForArgument(kotlinCall.explicitReceiver)
|
||||
baseSystem.addSubsystemForArgument(kotlinCall.dispatchReceiverForInvokeExtension)
|
||||
for (argument in kotlinCall.argumentsInParenthesis) {
|
||||
baseSystem.addSubsystemForArgument(argument)
|
||||
}
|
||||
baseSystem.addSubsystemForArgument(kotlinCall.externalArgument)
|
||||
|
||||
this.baseSystem = baseSystem.asReadOnlyStorage()
|
||||
}
|
||||
|
||||
// todo: try something else, because current method is ugly and unstable
|
||||
private fun createReceiverArgument(
|
||||
@@ -64,37 +81,80 @@ class SimpleCandidateFactory(
|
||||
else -> null
|
||||
}
|
||||
|
||||
fun createCandidate(givenCandidate: GivenCandidate): KotlinResolutionCandidate {
|
||||
val isSafeCall = (kotlinCall.explicitReceiver as? SimpleKotlinCallArgument)?.isSafeCall ?: false
|
||||
|
||||
val explicitReceiverKind = if (givenCandidate.dispatchReceiver == null) ExplicitReceiverKind.NO_EXPLICIT_RECEIVER else ExplicitReceiverKind.DISPATCH_RECEIVER
|
||||
val dispatchArgumentReceiver = givenCandidate.dispatchReceiver?.let { ReceiverExpressionKotlinCallArgument(it, isSafeCall) }
|
||||
return createCandidate(givenCandidate.descriptor, explicitReceiverKind, dispatchArgumentReceiver, null,
|
||||
listOf(), givenCandidate.knownTypeParametersResultingSubstitutor)
|
||||
}
|
||||
|
||||
override fun createCandidate(
|
||||
towerCandidate: CandidateWithBoundDispatchReceiver,
|
||||
explicitReceiverKind: ExplicitReceiverKind,
|
||||
extensionReceiver: ReceiverValueWithSmartCastInfo?
|
||||
): SimpleKotlinResolutionCandidate {
|
||||
): KotlinResolutionCandidate {
|
||||
val dispatchArgumentReceiver = createReceiverArgument(kotlinCall.getExplicitDispatchReceiver(explicitReceiverKind),
|
||||
towerCandidate.dispatchReceiver)
|
||||
val extensionArgumentReceiver = createReceiverArgument(kotlinCall.getExplicitExtensionReceiver(explicitReceiverKind), extensionReceiver)
|
||||
|
||||
if (ErrorUtils.isError(towerCandidate.descriptor)) {
|
||||
return ErrorKotlinResolutionCandidate(callComponents, scopeTower, kotlinCall, explicitReceiverKind, dispatchArgumentReceiver, extensionArgumentReceiver, towerCandidate.descriptor)
|
||||
return createCandidate(towerCandidate.descriptor, explicitReceiverKind, dispatchArgumentReceiver,
|
||||
extensionArgumentReceiver, towerCandidate.diagnostics, knownSubstitutor = null)
|
||||
}
|
||||
|
||||
private fun createCandidate(
|
||||
descriptor: CallableDescriptor,
|
||||
explicitReceiverKind: ExplicitReceiverKind,
|
||||
dispatchArgumentReceiver: SimpleKotlinCallArgument?,
|
||||
extensionArgumentReceiver: SimpleKotlinCallArgument?,
|
||||
initialDiagnostics: Collection<KotlinCallDiagnostic>,
|
||||
knownSubstitutor: TypeSubstitutor?
|
||||
): KotlinResolutionCandidate {
|
||||
val resolvedKtCall = MutableResolvedCallAtom(kotlinCall, descriptor, explicitReceiverKind,
|
||||
dispatchArgumentReceiver, extensionArgumentReceiver)
|
||||
|
||||
if (ErrorUtils.isError(descriptor)) {
|
||||
return KotlinResolutionCandidate(callComponents, scopeTower, baseSystem, resolvedKtCall, knownSubstitutor, listOf(ErrorDescriptorResolutionPart))
|
||||
}
|
||||
|
||||
val candidateDiagnostics = towerCandidate.diagnostics.toMutableList()
|
||||
if (callComponents.statelessCallbacks.isHiddenInResolution(towerCandidate.descriptor, kotlinCall)) {
|
||||
candidateDiagnostics.add(HiddenDescriptor)
|
||||
val candidate = KotlinResolutionCandidate(callComponents, scopeTower, baseSystem, resolvedKtCall, knownSubstitutor)
|
||||
|
||||
initialDiagnostics.forEach(candidate::addDiagnostic)
|
||||
|
||||
if (callComponents.statelessCallbacks.isHiddenInResolution(descriptor, kotlinCall)) {
|
||||
candidate.addDiagnostic(HiddenDescriptor)
|
||||
}
|
||||
|
||||
if (extensionReceiver != null) {
|
||||
val parameterIsDynamic = towerCandidate.descriptor.extensionReceiverParameter!!.value.type.isDynamic()
|
||||
val argumentIsDynamic = extensionReceiver.receiverValue.type.isDynamic()
|
||||
if (extensionArgumentReceiver != null) {
|
||||
val parameterIsDynamic = descriptor.extensionReceiverParameter!!.value.type.isDynamic()
|
||||
val argumentIsDynamic = extensionArgumentReceiver.receiver.receiverValue.type.isDynamic()
|
||||
|
||||
if (parameterIsDynamic != argumentIsDynamic ||
|
||||
(parameterIsDynamic && !towerCandidate.descriptor.hasDynamicExtensionAnnotation())) {
|
||||
candidateDiagnostics.add(HiddenExtensionRelatedToDynamicTypes)
|
||||
(parameterIsDynamic && !descriptor.hasDynamicExtensionAnnotation())) {
|
||||
candidate.addDiagnostic(HiddenExtensionRelatedToDynamicTypes)
|
||||
}
|
||||
}
|
||||
|
||||
return SimpleKotlinResolutionCandidate(callComponents, scopeTower, kotlinCall, explicitReceiverKind, dispatchArgumentReceiver, extensionArgumentReceiver,
|
||||
towerCandidate.descriptor, null, candidateDiagnostics)
|
||||
return candidate
|
||||
}
|
||||
|
||||
fun createErrorCandidate(): KotlinResolutionCandidate {
|
||||
val errorScope = ErrorUtils.createErrorScope("Error resolution candidate for call $kotlinCall")
|
||||
val errorDescriptor = if (kotlinCall.callKind == KotlinCallKind.VARIABLE) {
|
||||
errorScope.getContributedVariables(kotlinCall.name, scopeTower.location)
|
||||
}
|
||||
else {
|
||||
errorScope.getContributedFunctions(kotlinCall.name, scopeTower.location)
|
||||
}.first()
|
||||
|
||||
val dispatchReceiver = createReceiverArgument(kotlinCall.explicitReceiver, fromResolution = null)
|
||||
val explicitReceiverKind = if (dispatchReceiver == null) ExplicitReceiverKind.NO_EXPLICIT_RECEIVER else ExplicitReceiverKind.DISPATCH_RECEIVER
|
||||
|
||||
return createCandidate(errorDescriptor, explicitReceiverKind, dispatchReceiver, extensionArgumentReceiver = null,
|
||||
initialDiagnostics = listOf(), knownSubstitutor = null)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
enum class KotlinCallKind(vararg resolutionPart: ResolutionPart) {
|
||||
@@ -105,7 +165,7 @@ enum class KotlinCallKind(vararg resolutionPart: ResolutionPart) {
|
||||
CheckAbstractSuperCallPart,
|
||||
NoTypeArguments,
|
||||
NoArguments,
|
||||
CreateDescriptorWithFreshTypeVariables,
|
||||
CreateFreshVariablesSubstitutor,
|
||||
CheckExplicitReceiverKindConsistency,
|
||||
CheckReceivers
|
||||
),
|
||||
@@ -116,10 +176,12 @@ enum class KotlinCallKind(vararg resolutionPart: ResolutionPart) {
|
||||
CheckAbstractSuperCallPart,
|
||||
MapTypeArguments,
|
||||
MapArguments,
|
||||
CreateDescriptorWithFreshTypeVariables,
|
||||
ArgumentsToCandidateParameterDescriptor,
|
||||
CreateFreshVariablesSubstitutor,
|
||||
CheckExplicitReceiverKindConsistency,
|
||||
CheckReceivers,
|
||||
CheckArguments
|
||||
CheckArguments,
|
||||
CheckExternalArgument
|
||||
),
|
||||
UNSUPPORTED();
|
||||
|
||||
@@ -127,7 +189,6 @@ enum class KotlinCallKind(vararg resolutionPart: ResolutionPart) {
|
||||
}
|
||||
|
||||
class GivenCandidate(
|
||||
val scopeTower: ImplicitScopeTower,
|
||||
val descriptor: FunctionDescriptor,
|
||||
val dispatchReceiver: ReceiverValueWithSmartCastInfo?,
|
||||
val knownTypeParametersResultingSubstitutor: TypeSubstitutor?
|
||||
|
||||
-96
@@ -1,96 +0,0 @@
|
||||
/*
|
||||
* Copyright 2010-2017 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.model
|
||||
|
||||
import org.jetbrains.kotlin.builtins.createFunctionType
|
||||
import org.jetbrains.kotlin.builtins.getReceiverTypeFromFunctionType
|
||||
import org.jetbrains.kotlin.builtins.getReturnTypeFromFunctionType
|
||||
import org.jetbrains.kotlin.builtins.getValueParameterTypesFromFunctionType
|
||||
import org.jetbrains.kotlin.descriptors.annotations.Annotations
|
||||
import org.jetbrains.kotlin.resolve.calls.components.CallableReferenceCandidate
|
||||
import org.jetbrains.kotlin.resolve.calls.components.getFunctionTypeFromCallableReferenceExpectedType
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewTypeVariable
|
||||
import org.jetbrains.kotlin.types.SimpleType
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
import org.jetbrains.kotlin.types.typeUtil.builtIns
|
||||
|
||||
|
||||
sealed class PostponedKotlinCallArgument {
|
||||
abstract val argument: PostponableKotlinCallArgument
|
||||
|
||||
abstract val analyzed: Boolean
|
||||
|
||||
abstract val inputTypes: Collection<UnwrappedType>
|
||||
abstract val outputType: UnwrappedType?
|
||||
}
|
||||
|
||||
class PostponedLambdaArgument(
|
||||
override val argument: LambdaKotlinCallArgument,
|
||||
val isSuspend: Boolean,
|
||||
val receiver: UnwrappedType?,
|
||||
val parameters: List<UnwrappedType>,
|
||||
val returnType: UnwrappedType
|
||||
) : PostponedKotlinCallArgument() {
|
||||
override var analyzed: Boolean = false
|
||||
|
||||
val type: SimpleType = createFunctionType(returnType.builtIns, Annotations.EMPTY, receiver, parameters, null, returnType, isSuspend) // todo support annotations
|
||||
|
||||
override val inputTypes: Collection<UnwrappedType> get() = receiver?.let { parameters + it } ?: parameters
|
||||
override val outputType: UnwrappedType get() = returnType
|
||||
|
||||
lateinit var resultArguments: List<SimpleKotlinCallArgument>
|
||||
lateinit var finalReturnType: UnwrappedType
|
||||
}
|
||||
|
||||
class PostponedCallableReferenceArgument(
|
||||
override val argument: CallableReferenceKotlinCallArgument,
|
||||
val expectedType: UnwrappedType
|
||||
) : PostponedKotlinCallArgument() {
|
||||
override var analyzed: Boolean = false
|
||||
|
||||
override val inputTypes: Collection<UnwrappedType>
|
||||
get() {
|
||||
val functionType = getFunctionTypeFromCallableReferenceExpectedType(expectedType) ?: return emptyList()
|
||||
val parameters = functionType.getValueParameterTypesFromFunctionType().map { it.type.unwrap() }
|
||||
val receiver = functionType.getReceiverTypeFromFunctionType()?.unwrap()
|
||||
return receiver?.let { parameters + it } ?: parameters
|
||||
}
|
||||
|
||||
override val outputType: UnwrappedType?
|
||||
get() {
|
||||
val functionType = getFunctionTypeFromCallableReferenceExpectedType(expectedType) ?: return null
|
||||
return functionType.getReturnTypeFromFunctionType().unwrap()
|
||||
}
|
||||
|
||||
var analyzedAndThereIsResult: Boolean = false
|
||||
|
||||
lateinit var myTypeVariables: List<NewTypeVariable>
|
||||
lateinit var callableResolutionCandidate: CallableReferenceCandidate
|
||||
}
|
||||
|
||||
class PostponedCollectionLiteralArgument(
|
||||
override val argument: CollectionLiteralKotlinCallArgument,
|
||||
val expectedType: UnwrappedType
|
||||
) : PostponedKotlinCallArgument() {
|
||||
// for now we consider all such arguments as analyzed because they processed via special logic anyway
|
||||
override val analyzed get() = true
|
||||
|
||||
override val inputTypes: Collection<UnwrappedType>
|
||||
get() = emptyList()
|
||||
override val outputType: UnwrappedType?
|
||||
get() = null
|
||||
}
|
||||
@@ -0,0 +1,173 @@
|
||||
/*
|
||||
* Copyright 2010-2017 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.model
|
||||
|
||||
import org.jetbrains.kotlin.builtins.getReceiverTypeFromFunctionType
|
||||
import org.jetbrains.kotlin.builtins.getReturnTypeFromFunctionType
|
||||
import org.jetbrains.kotlin.builtins.getValueParameterTypesFromFunctionType
|
||||
import org.jetbrains.kotlin.descriptors.CallableDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.ValueParameterDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.components.CallableReferenceCandidate
|
||||
import org.jetbrains.kotlin.resolve.calls.components.TypeArgumentsToParametersMapper
|
||||
import org.jetbrains.kotlin.resolve.calls.components.getFunctionTypeFromCallableReferenceExpectedType
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.FreshVariableNewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.TypeVariableForLambdaReturnType
|
||||
import org.jetbrains.kotlin.resolve.calls.tasks.ExplicitReceiverKind
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
|
||||
/**
|
||||
* Call, Callable reference, lambda & function expression, collection literal.
|
||||
* In future we should add literals here, because they have similar lifecycle.
|
||||
*
|
||||
* Expression with type is also primitive. This is done for simplification. todo
|
||||
*/
|
||||
interface ResolutionAtom
|
||||
|
||||
sealed class ResolvedAtom {
|
||||
abstract val atom: ResolutionAtom? // CallResolutionResult has no ResolutionAtom
|
||||
|
||||
var analyzed: Boolean = false
|
||||
private set
|
||||
|
||||
lateinit var subResolvedAtoms: List<ResolvedAtom>
|
||||
private set
|
||||
lateinit var diagnostics: Collection<KotlinCallDiagnostic>
|
||||
private set
|
||||
|
||||
protected open fun setAnalyzedResults(subResolvedAtoms: List<ResolvedAtom>, diagnostics: Collection<KotlinCallDiagnostic>) {
|
||||
assert(!analyzed) {
|
||||
"Already analyzed: $this"
|
||||
}
|
||||
|
||||
analyzed = true
|
||||
|
||||
this.subResolvedAtoms = subResolvedAtoms
|
||||
this.diagnostics = diagnostics
|
||||
}
|
||||
}
|
||||
|
||||
abstract class ResolvedCallAtom : ResolvedAtom() {
|
||||
abstract override val atom: KotlinCall
|
||||
abstract val candidateDescriptor: CallableDescriptor
|
||||
abstract val explicitReceiverKind: ExplicitReceiverKind
|
||||
abstract val dispatchReceiverArgument: SimpleKotlinCallArgument?
|
||||
abstract val extensionReceiverArgument: SimpleKotlinCallArgument?
|
||||
abstract val typeArgumentMappingByOriginal: TypeArgumentsToParametersMapper.TypeArgumentsMapping
|
||||
abstract val argumentMappingByOriginal: Map<ValueParameterDescriptor, ResolvedCallArgument>
|
||||
abstract val substitutor: FreshVariableNewTypeSubstitutor
|
||||
}
|
||||
|
||||
class ResolvedExpressionAtom(override val atom: ExpressionKotlinCallArgument) : ResolvedAtom() {
|
||||
init {
|
||||
setAnalyzedResults(listOf(), listOf())
|
||||
}
|
||||
}
|
||||
sealed class PostponedResolvedAtom : ResolvedAtom() {
|
||||
abstract val inputTypes: Collection<UnwrappedType>
|
||||
abstract val outputType: UnwrappedType?
|
||||
}
|
||||
|
||||
class ResolvedLambdaAtom(
|
||||
override val atom: LambdaKotlinCallArgument,
|
||||
val isSuspend: Boolean,
|
||||
val receiver: UnwrappedType?,
|
||||
val parameters: List<UnwrappedType>,
|
||||
val returnType: UnwrappedType,
|
||||
val typeVariableForLambdaReturnType: TypeVariableForLambdaReturnType?
|
||||
) : PostponedResolvedAtom() {
|
||||
lateinit var resultArguments: List<KotlinCallArgument>
|
||||
private set
|
||||
|
||||
fun setAnalyzedResults(
|
||||
resultArguments: List<KotlinCallArgument>,
|
||||
subResolvedAtoms: List<ResolvedAtom>,
|
||||
diagnostics: Collection<KotlinCallDiagnostic>
|
||||
) {
|
||||
this.resultArguments = resultArguments
|
||||
setAnalyzedResults(subResolvedAtoms, diagnostics)
|
||||
}
|
||||
|
||||
override val inputTypes: Collection<UnwrappedType> get() = receiver?.let { parameters + it } ?: parameters
|
||||
override val outputType: UnwrappedType get() = returnType
|
||||
}
|
||||
|
||||
class ResolvedCallableReferenceAtom(
|
||||
override val atom: CallableReferenceKotlinCallArgument,
|
||||
val expectedType: UnwrappedType?
|
||||
) : PostponedResolvedAtom() {
|
||||
var candidate: CallableReferenceCandidate? = null
|
||||
private set
|
||||
|
||||
fun setAnalyzedResults(
|
||||
candidate: CallableReferenceCandidate?,
|
||||
subResolvedAtoms: List<ResolvedAtom>,
|
||||
diagnostics: Collection<KotlinCallDiagnostic>
|
||||
) {
|
||||
this.candidate = candidate
|
||||
setAnalyzedResults(subResolvedAtoms, diagnostics)
|
||||
}
|
||||
|
||||
override val inputTypes: Collection<UnwrappedType>
|
||||
get() {
|
||||
val functionType = getFunctionTypeFromCallableReferenceExpectedType(expectedType) ?: return emptyList()
|
||||
val parameters = functionType.getValueParameterTypesFromFunctionType().map { it.type.unwrap() }
|
||||
val receiver = functionType.getReceiverTypeFromFunctionType()?.unwrap()
|
||||
return receiver?.let { parameters + it } ?: parameters
|
||||
}
|
||||
|
||||
override val outputType: UnwrappedType?
|
||||
get() {
|
||||
val functionType = getFunctionTypeFromCallableReferenceExpectedType(expectedType) ?: return null
|
||||
return functionType.getReturnTypeFromFunctionType().unwrap()
|
||||
}
|
||||
}
|
||||
|
||||
class ResolvedCollectionLiteralAtom(
|
||||
override val atom: CollectionLiteralKotlinCallArgument,
|
||||
val expectedType: UnwrappedType?
|
||||
) : ResolvedAtom() {
|
||||
init {
|
||||
setAnalyzedResults(listOf(), listOf())
|
||||
}
|
||||
}
|
||||
|
||||
class CallResolutionResult(
|
||||
val type: Type,
|
||||
val resultCallAtom: ResolvedCallAtom?,
|
||||
diagnostics: List<KotlinCallDiagnostic>,
|
||||
val constraintSystem: ConstraintStorage
|
||||
) : ResolvedAtom() {
|
||||
override val atom: ResolutionAtom? get() = null
|
||||
|
||||
enum class Type {
|
||||
COMPLETED, // resultSubstitutor possible create use constraintSystem
|
||||
PARTIAL,
|
||||
ERROR // if resultCallAtom == null it means that there is errors NoneCandidates or ManyCandidates
|
||||
}
|
||||
|
||||
init {
|
||||
setAnalyzedResults(listOfNotNull(resultCallAtom), diagnostics)
|
||||
}
|
||||
|
||||
override fun toString() = "$type, resultCallAtom = $resultCallAtom, (${diagnostics.joinToString()})"
|
||||
}
|
||||
|
||||
val ResolvedCallAtom.freshReturnType: UnwrappedType? get() {
|
||||
val returnType = candidateDescriptor.returnType ?: return null
|
||||
return substitutor.safeSubstitute(returnType.unwrap())
|
||||
}
|
||||
+131
-95
@@ -20,127 +20,163 @@ import org.jetbrains.kotlin.descriptors.CallableDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.ValueParameterDescriptor
|
||||
import org.jetbrains.kotlin.renderer.DescriptorRenderer
|
||||
import org.jetbrains.kotlin.resolve.calls.components.TypeArgumentsToParametersMapper
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.ConstraintSystemBuilder
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.NewConstraintSystem
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.components.FreshVariableNewTypeSubstitutor
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.ConstraintStorage
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewConstraintSystemImpl
|
||||
import org.jetbrains.kotlin.resolve.calls.inference.model.NewTypeVariable
|
||||
import org.jetbrains.kotlin.resolve.calls.tasks.ExplicitReceiverKind
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.*
|
||||
import org.jetbrains.kotlin.types.TypeSubstitutor
|
||||
import java.util.*
|
||||
|
||||
|
||||
interface ResolutionPart {
|
||||
fun SimpleKotlinResolutionCandidate.process(): List<KotlinCallDiagnostic>
|
||||
abstract class ResolutionPart {
|
||||
abstract fun KotlinResolutionCandidate.process(workIndex: Int)
|
||||
|
||||
open fun KotlinResolutionCandidate.workCount(): Int = 1
|
||||
|
||||
// helper functions
|
||||
protected inline val KotlinResolutionCandidate.candidateDescriptor get() = resolvedCall.candidateDescriptor
|
||||
protected inline val KotlinResolutionCandidate.kotlinCall get() = resolvedCall.atom
|
||||
}
|
||||
|
||||
sealed class KotlinResolutionCandidate : Candidate {
|
||||
abstract val kotlinCall: KotlinCall
|
||||
interface KotlinDiagnosticsHolder {
|
||||
fun addDiagnostic(diagnostic: KotlinCallDiagnostic)
|
||||
|
||||
abstract val lastCall: SimpleKotlinResolutionCandidate
|
||||
}
|
||||
class SimpleHolder : KotlinDiagnosticsHolder {
|
||||
private val diagnostics = arrayListOf<KotlinCallDiagnostic>()
|
||||
|
||||
class VariableAsFunctionKotlinResolutionCandidate(
|
||||
override val kotlinCall: KotlinCall,
|
||||
val resolvedVariable: SimpleKotlinResolutionCandidate,
|
||||
val invokeCandidate: SimpleKotlinResolutionCandidate
|
||||
) : KotlinResolutionCandidate() {
|
||||
override val isSuccessful: Boolean get() = resolvedVariable.isSuccessful && invokeCandidate.isSuccessful
|
||||
override val resultingApplicability: ResolutionCandidateApplicability
|
||||
get() = maxOf(resolvedVariable.resultingApplicability, invokeCandidate.resultingApplicability)
|
||||
|
||||
override val lastCall: SimpleKotlinResolutionCandidate get() = invokeCandidate
|
||||
}
|
||||
|
||||
sealed class AbstractSimpleKotlinResolutionCandidate(
|
||||
val constraintSystem: NewConstraintSystem,
|
||||
initialDiagnostics: Collection<KotlinCallDiagnostic> = emptyList()
|
||||
) : KotlinResolutionCandidate() {
|
||||
override val isSuccessful: Boolean
|
||||
get() {
|
||||
process(stopOnFirstError = true)
|
||||
return !hasErrors
|
||||
override fun addDiagnostic(diagnostic: KotlinCallDiagnostic) {
|
||||
diagnostics.add(diagnostic)
|
||||
}
|
||||
|
||||
override val resultingApplicability: ResolutionCandidateApplicability
|
||||
get() {
|
||||
process(stopOnFirstError = false)
|
||||
return getResultApplicability(diagnostics + constraintSystem.diagnostics)
|
||||
}
|
||||
|
||||
private val diagnostics = ArrayList<KotlinCallDiagnostic>()
|
||||
protected var step = 0
|
||||
private set
|
||||
|
||||
protected var hasErrors = false
|
||||
private set
|
||||
|
||||
private fun process(stopOnFirstError: Boolean) {
|
||||
while (step < resolutionSequence.size && (!stopOnFirstError || !hasErrors)) {
|
||||
addDiagnostics(resolutionSequence[step].run { lastCall.process() })
|
||||
step++
|
||||
}
|
||||
fun getDiagnostics(): List<KotlinCallDiagnostic> = diagnostics
|
||||
}
|
||||
|
||||
private fun addDiagnostics(diagnostics: Collection<KotlinCallDiagnostic>) {
|
||||
hasErrors = hasErrors || diagnostics.any { !it.candidateApplicability.isSuccess } ||
|
||||
constraintSystem.diagnostics.any { !it.candidateApplicability.isSuccess }
|
||||
this.diagnostics.addAll(diagnostics)
|
||||
}
|
||||
|
||||
init {
|
||||
addDiagnostics(initialDiagnostics)
|
||||
}
|
||||
|
||||
fun getCandidateDiagnostics(): List<KotlinCallDiagnostic> = diagnostics
|
||||
|
||||
abstract val resolutionSequence: List<ResolutionPart>
|
||||
}
|
||||
|
||||
open class SimpleKotlinResolutionCandidate(
|
||||
fun KotlinDiagnosticsHolder.addDiagnosticIfNotNull(diagnostic: KotlinCallDiagnostic?) {
|
||||
diagnostic?.let { addDiagnostic(it) }
|
||||
}
|
||||
/**
|
||||
* baseSystem contains all information from arguments, i.e. it is union of all system of arguments
|
||||
* Also by convention we suppose that baseSystem has no contradiction
|
||||
*/
|
||||
class KotlinResolutionCandidate(
|
||||
val callComponents: KotlinCallComponents,
|
||||
val scopeTower: ImplicitScopeTower,
|
||||
override val kotlinCall: KotlinCall,
|
||||
val explicitReceiverKind: ExplicitReceiverKind,
|
||||
val dispatchReceiverArgument: SimpleKotlinCallArgument?,
|
||||
val extensionReceiver: SimpleKotlinCallArgument?,
|
||||
val candidateDescriptor: CallableDescriptor,
|
||||
val knownTypeParametersResultingSubstitutor: TypeSubstitutor?,
|
||||
initialDiagnostics: Collection<KotlinCallDiagnostic>
|
||||
) : AbstractSimpleKotlinResolutionCandidate(NewConstraintSystemImpl(callComponents.constraintInjector, callComponents.resultTypeResolver), initialDiagnostics) {
|
||||
val csBuilder: ConstraintSystemBuilder get() = constraintSystem.getBuilder()
|
||||
private val baseSystem: ConstraintStorage,
|
||||
val resolvedCall: MutableResolvedCallAtom,
|
||||
val knownTypeParametersResultingSubstitutor: TypeSubstitutor? = null,
|
||||
private val resolutionSequence: List<ResolutionPart> = resolvedCall.atom.callKind.resolutionSequence
|
||||
) : Candidate, KotlinDiagnosticsHolder {
|
||||
private var newSystem: NewConstraintSystemImpl? = null
|
||||
private val diagnostics = arrayListOf<KotlinCallDiagnostic>()
|
||||
private var currentApplicability = ResolutionCandidateApplicability.RESOLVED
|
||||
private var subResolvedAtoms: MutableList<ResolvedAtom> = arrayListOf()
|
||||
|
||||
lateinit var typeArgumentMappingByOriginal: TypeArgumentsToParametersMapper.TypeArgumentsMapping
|
||||
lateinit var argumentMappingByOriginal: Map<ValueParameterDescriptor, ResolvedCallArgument>
|
||||
lateinit var descriptorWithFreshTypes: CallableDescriptor
|
||||
lateinit var typeVariablesForFreshTypeParameters: List<NewTypeVariable>
|
||||
private val stepCount = resolutionSequence.sumBy { it.run { workCount() } }
|
||||
private var step = 0
|
||||
|
||||
override val lastCall: SimpleKotlinResolutionCandidate get() = this
|
||||
override val resolutionSequence: List<ResolutionPart> get() = kotlinCall.callKind.resolutionSequence
|
||||
fun getSystem(): NewConstraintSystem {
|
||||
if (newSystem == null) {
|
||||
newSystem = NewConstraintSystemImpl(callComponents.constraintInjector, callComponents.builtIns)
|
||||
newSystem!!.addOtherSystem(baseSystem)
|
||||
}
|
||||
return newSystem!!
|
||||
}
|
||||
|
||||
internal val csBuilder get() = getSystem().getBuilder()
|
||||
|
||||
override fun addDiagnostic(diagnostic: KotlinCallDiagnostic) {
|
||||
diagnostics.add(diagnostic)
|
||||
currentApplicability = maxOf(diagnostic.candidateApplicability, currentApplicability)
|
||||
}
|
||||
|
||||
fun addResolvedKtPrimitive(resolvedAtom: ResolvedAtom) {
|
||||
subResolvedAtoms.add(resolvedAtom)
|
||||
}
|
||||
|
||||
private fun processParts(stopOnFirstError: Boolean) {
|
||||
if (stopOnFirstError && step > 0) return // error already happened
|
||||
if (step == stepCount) return
|
||||
|
||||
var partIndex = 0
|
||||
var workStep = step
|
||||
while (workStep > 0) {
|
||||
val workCount = resolutionSequence[partIndex].run { workCount() }
|
||||
if (workStep >= workCount) {
|
||||
partIndex++
|
||||
workStep -= workCount
|
||||
}
|
||||
}
|
||||
if (partIndex < resolutionSequence.size) {
|
||||
if (processPart(resolutionSequence[partIndex], stopOnFirstError, workStep)) return
|
||||
partIndex++
|
||||
}
|
||||
|
||||
while (partIndex < resolutionSequence.size) {
|
||||
if (processPart(resolutionSequence[partIndex], stopOnFirstError)) return
|
||||
partIndex++
|
||||
}
|
||||
if (step == stepCount) {
|
||||
resolvedCall.setAnalyzedResults(subResolvedAtoms, diagnostics + getSystem().diagnostics)
|
||||
}
|
||||
}
|
||||
|
||||
// true if part was interrupted
|
||||
private fun processPart(part: ResolutionPart, stopOnFirstError: Boolean, startWorkIndex: Int = 0): Boolean {
|
||||
for (workIndex in startWorkIndex until (part.run { workCount() })) {
|
||||
if (stopOnFirstError && !currentApplicability.isSuccess) return true
|
||||
|
||||
part.run { process(workIndex) }
|
||||
step++
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
val variableCandidateIfInvoke: KotlinResolutionCandidate?
|
||||
get() = callComponents.statelessCallbacks.getVariableCandidateIfInvoke(resolvedCall.atom)
|
||||
|
||||
private val variableApplicability
|
||||
get() = variableCandidateIfInvoke?.resultingApplicability ?: ResolutionCandidateApplicability.RESOLVED
|
||||
|
||||
override val isSuccessful: Boolean
|
||||
get() {
|
||||
processParts(stopOnFirstError = true)
|
||||
return currentApplicability.isSuccess && variableApplicability.isSuccess
|
||||
}
|
||||
|
||||
override val resultingApplicability: ResolutionCandidateApplicability
|
||||
get() {
|
||||
processParts(stopOnFirstError = false)
|
||||
|
||||
val systemApplicability = getResultApplicability(getSystem().diagnostics)
|
||||
return maxOf(currentApplicability, systemApplicability, variableApplicability)
|
||||
}
|
||||
|
||||
override fun toString(): String {
|
||||
val descriptor = DescriptorRenderer.COMPACT.render(candidateDescriptor)
|
||||
val okOrFail = if (hasErrors) "FAIL" else "OK"
|
||||
val step = "$step/${resolutionSequence.size}"
|
||||
val descriptor = DescriptorRenderer.COMPACT.render(resolvedCall.candidateDescriptor)
|
||||
val okOrFail = if (currentApplicability.isSuccess) "OK" else "FAIL"
|
||||
val step = "$step/$stepCount"
|
||||
return "$okOrFail($step): $descriptor"
|
||||
}
|
||||
}
|
||||
|
||||
class ErrorKotlinResolutionCandidate(
|
||||
callComponents: KotlinCallComponents,
|
||||
scopeTower: ImplicitScopeTower,
|
||||
kotlinCall: KotlinCall,
|
||||
explicitReceiverKind: ExplicitReceiverKind,
|
||||
dispatchReceiverArgument: SimpleKotlinCallArgument?,
|
||||
extensionReceiver: SimpleKotlinCallArgument?,
|
||||
candidateDescriptor: CallableDescriptor
|
||||
) : SimpleKotlinResolutionCandidate(callComponents, scopeTower, kotlinCall, explicitReceiverKind, dispatchReceiverArgument,
|
||||
extensionReceiver, candidateDescriptor, null, listOf()) {
|
||||
override val resolutionSequence: List<ResolutionPart> get() = emptyList()
|
||||
class MutableResolvedCallAtom(
|
||||
override val atom: KotlinCall,
|
||||
override val candidateDescriptor: CallableDescriptor, // original candidate descriptor
|
||||
override val explicitReceiverKind: ExplicitReceiverKind,
|
||||
override val dispatchReceiverArgument: SimpleKotlinCallArgument?,
|
||||
override val extensionReceiverArgument: SimpleKotlinCallArgument?
|
||||
) : ResolvedCallAtom() {
|
||||
override lateinit var typeArgumentMappingByOriginal: TypeArgumentsToParametersMapper.TypeArgumentsMapping
|
||||
override lateinit var argumentMappingByOriginal: Map<ValueParameterDescriptor, ResolvedCallArgument>
|
||||
override lateinit var substitutor: FreshVariableNewTypeSubstitutor
|
||||
lateinit var argumentToCandidateParameter: Map<KotlinCallArgument, ValueParameterDescriptor>
|
||||
|
||||
init {
|
||||
typeArgumentMappingByOriginal = TypeArgumentsToParametersMapper.TypeArgumentsMapping.NoExplicitArguments
|
||||
argumentMappingByOriginal = emptyMap()
|
||||
descriptorWithFreshTypes = candidateDescriptor
|
||||
override public fun setAnalyzedResults(subResolvedAtoms: List<ResolvedAtom>, diagnostics: Collection<KotlinCallDiagnostic>) {
|
||||
super.setAnalyzedResults(subResolvedAtoms, diagnostics)
|
||||
}
|
||||
|
||||
override fun toString(): String = "$atom, candidate = $candidateDescriptor"
|
||||
}
|
||||
|
||||
|
||||
-49
@@ -16,55 +16,6 @@
|
||||
|
||||
package org.jetbrains.kotlin.resolve.calls.model
|
||||
|
||||
import org.jetbrains.kotlin.descriptors.CallableDescriptor
|
||||
import org.jetbrains.kotlin.descriptors.ValueParameterDescriptor
|
||||
import org.jetbrains.kotlin.resolve.calls.tasks.ExplicitReceiverKind
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.ResolutionCandidateApplicability
|
||||
import org.jetbrains.kotlin.resolve.calls.tower.getResultApplicability
|
||||
import org.jetbrains.kotlin.resolve.scopes.receivers.ReceiverValueWithSmartCastInfo
|
||||
import org.jetbrains.kotlin.types.UnwrappedType
|
||||
|
||||
sealed class ResolvedKotlinCall {
|
||||
abstract val resultingApplicability: ResolutionCandidateApplicability
|
||||
|
||||
class CompletedResolvedKotlinCall(
|
||||
val completedCall: CompletedKotlinCall,
|
||||
val allInnerCalls: Collection<CompletedKotlinCall>,
|
||||
val lambdaArguments: List<PostponedLambdaArgument>
|
||||
): ResolvedKotlinCall() {
|
||||
override val resultingApplicability get() = completedCall.resultingApplicability
|
||||
}
|
||||
|
||||
class OnlyResolvedKotlinCall(val candidate: KotlinResolutionCandidate) : ResolvedKotlinCall() {
|
||||
override val resultingApplicability get() = candidate.resultingApplicability
|
||||
}
|
||||
}
|
||||
|
||||
sealed class CompletedKotlinCall {
|
||||
abstract val resultingApplicability: ResolutionCandidateApplicability
|
||||
|
||||
class Simple(
|
||||
val kotlinCall: KotlinCall,
|
||||
val candidateDescriptor: CallableDescriptor,
|
||||
val resultingDescriptor: CallableDescriptor,
|
||||
val diagnostics: List<KotlinCallDiagnostic>,
|
||||
val explicitReceiverKind: ExplicitReceiverKind,
|
||||
val dispatchReceiver: ReceiverValueWithSmartCastInfo?,
|
||||
val extensionReceiver: ReceiverValueWithSmartCastInfo?,
|
||||
val typeArguments: List<UnwrappedType>,
|
||||
val argumentMappingByOriginal: Map<ValueParameterDescriptor, ResolvedCallArgument>
|
||||
): CompletedKotlinCall() {
|
||||
override val resultingApplicability = getResultApplicability(diagnostics)
|
||||
}
|
||||
|
||||
class VariableAsFunction(
|
||||
val kotlinCall: KotlinCall,
|
||||
val variableCall: Simple,
|
||||
val invokeCall: Simple
|
||||
): CompletedKotlinCall() {
|
||||
override val resultingApplicability get() = maxOf(variableCall.resultingApplicability, invokeCall.resultingApplicability)
|
||||
}
|
||||
}
|
||||
|
||||
sealed class ResolvedCallArgument {
|
||||
abstract val arguments: List<KotlinCallArgument>
|
||||
|
||||
+1
-1
@@ -60,7 +60,7 @@ interface CandidateWithBoundDispatchReceiver {
|
||||
val dispatchReceiver: ReceiverValueWithSmartCastInfo?
|
||||
}
|
||||
|
||||
fun getResultApplicability(diagnostics: List<KotlinCallDiagnostic>) = diagnostics.maxBy { it.candidateApplicability }?.candidateApplicability
|
||||
fun getResultApplicability(diagnostics: Collection<KotlinCallDiagnostic>) = diagnostics.maxBy { it.candidateApplicability }?.candidateApplicability
|
||||
?: RESOLVED
|
||||
|
||||
enum class ResolutionCandidateApplicability {
|
||||
|
||||
@@ -41,4 +41,9 @@ internal class CandidateWithBoundDispatchReceiverImpl(
|
||||
override val dispatchReceiver: ReceiverValueWithSmartCastInfo?,
|
||||
override val descriptor: CallableDescriptor,
|
||||
override val diagnostics: List<ResolutionDiagnostic>
|
||||
) : CandidateWithBoundDispatchReceiver
|
||||
) : CandidateWithBoundDispatchReceiver
|
||||
|
||||
fun <C : Candidate> C.forceResolution(): C {
|
||||
resultingApplicability
|
||||
return this
|
||||
}
|
||||
Reference in New Issue
Block a user