Fix compilation cause of KT-47797 problem
#KT-47797
This commit is contained in:
+3
-1
@@ -992,7 +992,9 @@ abstract class Kotlin2JsCompile @Inject constructor(
|
|||||||
private val libraryFilterBody: (File) -> Boolean
|
private val libraryFilterBody: (File) -> Boolean
|
||||||
get() = if (kotlinOptions.isIrBackendEnabled()) {
|
get() = if (kotlinOptions.isIrBackendEnabled()) {
|
||||||
if (kotlinOptions.isPreIrBackendDisabled()) {
|
if (kotlinOptions.isPreIrBackendDisabled()) {
|
||||||
::isKotlinLibrary
|
//::isKotlinLibrary
|
||||||
|
// Workaround for KT-47797
|
||||||
|
{ isKotlinLibrary(it) }
|
||||||
} else {
|
} else {
|
||||||
::isHybridKotlinJsLibrary
|
::isHybridKotlinJsLibrary
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user