Files
kotlin-fork/compiler/ir/ir.tree.persistent/build.gradle.kts
T
Alexander Udalov 77247deb23 IR: add module ir.tree.persistent, copy PIR implementation there
Use PersistentIrFactory in JS IR compiler entry points.
2020-07-28 19:04:43 +02:00

14 lines
181 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":compiler:ir.tree"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}