FIR: Remove recursive processAllContainingCallCandidates

This commit is contained in:
Simon Ogorodnik
2021-11-30 03:44:36 +03:00
committed by teamcity
parent bb13583862
commit 1593dd2514
@@ -459,12 +459,10 @@ fun FirStatement.processAllContainingCallCandidates(processBlocks: Boolean, proc
}
is FirQualifiedAccessExpression -> {
explicitReceiver?.processAllContainingCallCandidates(processBlocks, processor)
processCandidateIfApplicable(processor, processBlocks)
}
is FirVariableAssignment -> {
explicitReceiver?.processAllContainingCallCandidates(processBlocks, processor)
processCandidateIfApplicable(processor, processBlocks)
rValue.processAllContainingCallCandidates(processBlocks, processor)
}