jvmMain.compiler.CompilationResult.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fluid-compiler-jvm Show documentation
Show all versions of fluid-compiler-jvm Show documentation
Compile Kotlin code and run Kapt annotation processing directly from Kotlin
package io.fluidsonic.compiler
import org.jetbrains.kotlin.cli.common.*
public data class CompilationResult(
val exitCode: ExitCode,
val generatedFiles: Collection,
val messages: List
)