fb8bf19091
The new name more precisely describes the meaning of this opt-int
23 lines
488 B
Kotlin
23 lines
488 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":compiler:ir.psi2ir"))
|
|
api(project(":compiler:fir:fir2ir"))
|
|
api(project(":compiler:ir.serialization.common"))
|
|
api(project(":js:js.frontend"))
|
|
|
|
implementation(project(":compiler:ir.backend.common"))
|
|
implementation(project(":compiler:fir:fir-serialization"))
|
|
|
|
compileOnly(intellijCore())
|
|
}
|
|
|
|
optInToUnsafeDuringIrConstructionAPI()
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
}
|