JVM IR: move jvmPhases to backend.jvm.entrypoint

This will be used for two purposes:
1) call lowerings and codegen separately from
   KotlinToJVMBytecodeCompiler to support cyclical module dependencies
   (KT-49575)
2) split lowerings and codegen into separate modules
This commit is contained in:
Alexander Udalov
2021-09-15 02:15:07 +02:00
parent 79f9bd9c29
commit f701f04326
4 changed files with 73 additions and 65 deletions
-1
View File
@@ -12,7 +12,6 @@ dependencies {
api(project(":compiler:backend-common"))
api(project(":compiler:backend"))
api(project(":compiler:backend.jvm"))
implementation(project(":compiler:backend.jvm.lower"))
implementation(project(":compiler:backend.jvm.entrypoint"))
api(project(":compiler:ir.backend.common"))
api(project(":compiler:light-classes"))