radekm
11/25/2020, 10:01 AMBar
data class. My program builds and runs successfully but IntelliJ thinks it is wrong:radekm
11/25/2020, 10:03 AMradekm
11/25/2020, 10:05 AMbuild.gradle.kts
for the project where I use the plugin
plugins {
kotlin("jvm")
}
tasks.withType<KotlinCompile>() {
kotlinOptions.jvmTarget = "11"
kotlinOptions.freeCompilerArgs = listOf("-Xplugin=${rootDir}/my-plugin/build/libs/my-plugin.jar")
}
val arrow_version = "0.11.0"
dependencies {
compileOnly("io.arrow-kt:arrow-annotations:0.11.0")
}
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
this.dependsOn(":my-plugin:assemble")
}
radekm
11/25/2020, 10:07 AMraulraja
11/25/2020, 10:36 AMradekm
11/25/2020, 2:08 PMclass `temp Foo`()
and then leaving it in ASTVladimir Mutafov
11/25/2020, 8:48 PMVladimir Mutafov
11/25/2020, 8:48 PMVladimir Mutafov
11/25/2020, 8:50 PM