Remove dependency of fir.tree on ir.tree

This commit is contained in:
Alexander Udalov
2020-02-06 18:03:26 +01:00
parent 10d2eebe28
commit feccf9cc1b
6 changed files with 29 additions and 41 deletions
+2 -6
View File
@@ -1,10 +1,5 @@
import org.jetbrains.kotlin.ideaExt.idea
/*
* Copyright 2000-2018 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
plugins {
kotlin("jvm")
id("jps-compatible")
@@ -14,7 +9,8 @@ dependencies {
compile(project(":compiler:frontend.common"))
compile(project(":core:descriptors"))
compile(project(":compiler:fir:cones"))
compile(project(":compiler:ir.tree"))
compile(project(":compiler:resolution"))
// Necessary only to store bound PsiElement inside FirElement
compileOnly(intellijCoreDep()) { includeJars("intellij-core") }
}