Introduce new module for common parts of backend utils

Mainly it needed for abstract jvm type mapper for different type systems:
  IrTypes and ConeKotlinTypes
This commit is contained in:
Dmitriy Novozhilov
2020-09-22 13:22:36 +03:00
parent c3a89e2507
commit 54a5a066e8
7 changed files with 20 additions and 0 deletions
+1
View File
@@ -10,6 +10,7 @@ dependencies {
compile(project(":compiler:frontend"))
compile(project(":compiler:frontend.java"))
compile(project(":compiler:serialization"))
api(project(":core:compiler.backend.common.jvm"))
compileOnly(intellijCoreDep()) { includeJars("intellij-core", "asm-all", "guava", rootProject = rootProject) }
compileOnly(intellijDep()) { includeJars("trove4j", rootProject = rootProject) }
}