From 566640aa6decbfe91ee7a71f4e81f9437a2b8786 Mon Sep 17 00:00:00 2001 From: Pavel Kirpichenkov Date: Fri, 16 Jul 2021 15:54:47 +0300 Subject: [PATCH] [MPP] Move KotlinTypeRefinerImpl (frontend -> descriptors) ExpectedActualResolver in certain cases needs an ability to create a standalone refiner instance, see the following commits. A direct module dependency (resolution -> frontend) can't be added, the opposite one already exists which leads to a dependency cycle. Both modules depend on core.descriptors module where KotlinTypeRefiner resides. KT-46691 --- .../src/org/jetbrains/kotlin/types/KotlinTypeRefinerImpl.kt | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename {compiler/frontend => core/descriptors}/src/org/jetbrains/kotlin/types/KotlinTypeRefinerImpl.kt (100%) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/types/KotlinTypeRefinerImpl.kt b/core/descriptors/src/org/jetbrains/kotlin/types/KotlinTypeRefinerImpl.kt similarity index 100% rename from compiler/frontend/src/org/jetbrains/kotlin/types/KotlinTypeRefinerImpl.kt rename to core/descriptors/src/org/jetbrains/kotlin/types/KotlinTypeRefinerImpl.kt