From dbbc30a6a2b428511ddc9d0b9cec78e92f159d87 Mon Sep 17 00:00:00 2001 From: Anton Bannykh Date: Fri, 26 Nov 2021 16:49:22 +0300 Subject: [PATCH] [JS IR] enable per-module by default --- .../test/org/jetbrains/kotlin/js/test/ir/AbstractJsIrTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/AbstractJsIrTest.kt b/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/AbstractJsIrTest.kt index 8dd9e920fab..e6407572cc2 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/AbstractJsIrTest.kt +++ b/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/AbstractJsIrTest.kt @@ -55,7 +55,7 @@ abstract class AbstractJsIrTest( if (runIc) +JsEnvironmentConfigurationDirectives.RUN_IC if (runIc || getBoolean("kotlin.js.ir.lowerPerModule")) +JsEnvironmentConfigurationDirectives.LOWER_PER_MODULE if (getBoolean("kotlin.js.ir.klibMainModule")) +JsEnvironmentConfigurationDirectives.KLIB_MAIN_MODULE - if (getBoolean("kotlin.js.ir.perModule")) +JsEnvironmentConfigurationDirectives.PER_MODULE + if (getBoolean("kotlin.js.ir.perModule", true)) +JsEnvironmentConfigurationDirectives.PER_MODULE if (getBoolean("kotlin.js.ir.dce", true)) +JsEnvironmentConfigurationDirectives.RUN_IR_DCE if (getBoolean("kotlin.js.ir.newIr2Js", true)) +JsEnvironmentConfigurationDirectives.RUN_NEW_IR_2_JS -JsEnvironmentConfigurationDirectives.GENERATE_NODE_JS_RUNNER