Files
kotlin-fork/compiler/ir/serialization.js/build.gradle.kts
T
Dmitriy Novozhilov fb8bf19091 [IR] Rename IrSymbolInternals to UnsafeDuringIrConstructionAPI
The new name more precisely describes the meaning of this opt-int
2023-10-25 11:32:46 +00:00

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() }
}