org.jetbrains.kotlinx.jupyter.compiler.CompilerArgsConfigurator.kt Maven / Gradle / Ivy
package org.jetbrains.kotlinx.jupyter.compiler
import kotlin.script.experimental.api.ResultWithDiagnostics
import kotlin.script.experimental.api.ScriptCompilationConfiguration
interface CompilerArgsConfigurator {
fun getArgs(): List
fun configure(
configuration: ScriptCompilationConfiguration,
annotations: List,
): ResultWithDiagnostics
fun addArg(arg: String)
}