From f7f489537bb166acea376112a64f5a3f16538534 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Sun, 16 Aug 2020 23:48:59 +0300 Subject: [PATCH] [FIR] Remove dependency on :core:descriptors from :compiler:fir:tree --- compiler/fir/tree/build.gradle.kts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/compiler/fir/tree/build.gradle.kts b/compiler/fir/tree/build.gradle.kts index 43aa2ee46dc..7f594994007 100644 --- a/compiler/fir/tree/build.gradle.kts +++ b/compiler/fir/tree/build.gradle.kts @@ -6,10 +6,9 @@ plugins { } dependencies { - compile(project(":compiler:frontend.common")) - compile(project(":core:descriptors")) - compile(project(":compiler:fir:cones")) + api(project(":compiler:fir:cones")) compile(project(":compiler:resolution")) + compile(project(":compiler:frontend.common")) // Necessary only to store bound PsiElement inside FirElement compileOnly(intellijCoreDep()) { includeJars("intellij-core") }