Force recompile all call-sites of ExpectedActualResolver.{findActualForExpected, findExpectedForActual}
This is needed to workaround broken incremental compilation in JPS in Kotlin plugin. The incremental compilation bug is reported KT-60759 In Kotlin plugin I created the same commit which changes the name of the function on the call-site. Review: https://jetbrains.team/p/kt/reviews/11039/timeline After a few days in master branch, I will revert this commit
This commit is contained in:
+1
-1
@@ -27,7 +27,7 @@ internal class KtFe10MultiplatformInfoProvider(
|
||||
val memberDescriptor = (getSymbolDescriptor(actual) as? MemberDescriptor)?.takeIf { it.isActual } ?: return null
|
||||
|
||||
val expectedCompatibilityMap =
|
||||
ExpectedActualResolver.findExpectedForActual(memberDescriptor) ?: return null
|
||||
ExpectedActualResolver.findExpectedForActual_incrementalCompilationWorkaround(memberDescriptor) ?: return null
|
||||
|
||||
val expectsForActual = (expectedCompatibilityMap[ExpectActualCompatibility.Compatible]
|
||||
?: expectedCompatibilityMap.values.flatten())
|
||||
|
||||
Reference in New Issue
Block a user