b44fd1a6fe
For now will be created separate invoke method that will contains a call to lambda. This way it is clearer and more intuitive
16 lines
235 B
Kotlin
16 lines
235 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:ir.tree.impl"))
|
|
compileOnly(project(":kotlin-reflect-api"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|
|
|