org.jetbrains.kotlin.gradle.dsl.KotlinTargetContainerWithJsPresetFunctions.kt Maven / Gradle / Ivy
/*
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.gradle.dsl
import org.gradle.api.Action
import org.jetbrains.kotlin.gradle.plugin.*
import org.jetbrains.kotlin.gradle.targets.android.internal.InternalKotlinTargetPreset
import org.jetbrains.kotlin.gradle.targets.js.dsl.KotlinJsTargetDsl
@KotlinGradlePluginPublicDsl
interface KotlinTargetContainerWithJsPresetFunctions :
KotlinTargetContainerWithPresetFunctions,
KotlinJsCompilerTypeHolder {
fun js(
name: String = "js",
compiler: KotlinJsCompilerType = defaultJsCompilerType,
configure: KotlinJsTargetDsl.() -> Unit = { }
): KotlinJsTargetDsl = jsInternal(
name,
configure
)
fun js(
name: String,
compiler: String,
configure: KotlinJsTargetDsl.() -> Unit = { }
) = js(
name = name,
compiler = KotlinJsCompilerType.byArgument(compiler),
configure = configure
)
fun js(
name: String = "js",
configure: KotlinJsTargetDsl.() -> Unit = { }
) = jsInternal(name = name, configure = configure)
fun js(
compiler: KotlinJsCompilerType,
configure: KotlinJsTargetDsl.() -> Unit = { }
) = js(name = "js", compiler = compiler, configure = configure)
fun js() = jsInternal(name = "js") { }
fun js(name: String) = jsInternal(name = name) { }
fun js(name: String, configure: Action) = jsInternal(name = name) { configure.execute(this) }
fun js(compiler: KotlinJsCompilerType, configure: Action) = js(compiler = compiler) {
configure.execute(this)
}
fun js(configure: Action) = jsInternal { configure.execute(this) }
fun js(
name: String,
compiler: KotlinJsCompilerType,
configure: Action
) = js(
name = name,
compiler = compiler
) {
configure.execute(this)
}
fun js(
name: String,
compiler: String,
configure: Action
) = js(
name = name,
compiler = compiler
) {
configure.execute(this)
}
}
private fun KotlinTargetContainerWithJsPresetFunctions.jsInternal(
name: String = "js",
configure: KotlinJsTargetDsl.() -> Unit
): KotlinJsTargetDsl {
@Suppress("UNCHECKED_CAST", "DEPRECATION")
return configureOrCreate(
name,
presets.getByName(
"js"
) as InternalKotlinTargetPreset,
configure
)
}