[Gradle] Fix warnings in KotlinJsBinaryContainer
^KT-56904 In Progress
This commit is contained in:
committed by
Space Team
parent
d0b0774c6d
commit
ed82ca5c09
+3
-3
@@ -68,11 +68,11 @@ constructor(
|
|||||||
internal fun executableIrInternal(compilation: KotlinJsIrCompilation): List<JsIrBinary> = createBinaries(
|
internal fun executableIrInternal(compilation: KotlinJsIrCompilation): List<JsIrBinary> = createBinaries(
|
||||||
compilation = compilation,
|
compilation = compilation,
|
||||||
jsBinaryType = KotlinJsBinaryType.EXECUTABLE,
|
jsBinaryType = KotlinJsBinaryType.EXECUTABLE,
|
||||||
create = { compilation, name, mode ->
|
create = { jsCompilation, name, mode ->
|
||||||
if (target.platformType == KotlinPlatformType.wasm) {
|
if (target.platformType == KotlinPlatformType.wasm) {
|
||||||
ExecutableWasm(compilation, name, mode)
|
ExecutableWasm(jsCompilation, name, mode)
|
||||||
} else {
|
} else {
|
||||||
Executable(compilation, name, mode)
|
Executable(jsCompilation, name, mode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user