[JS IR] enable per-module by default

This commit is contained in:
Anton Bannykh
2021-11-26 16:49:22 +03:00
committed by TeamCityServer
parent af134912be
commit dbbc30a6a2
@@ -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