[JS IR] Use property lazy initialization by default

This commit is contained in:
Ilya Goncharov
2021-09-17 13:46:53 +03:00
committed by Space
parent 9af66d15a3
commit 01fbe6bacc
@@ -136,7 +136,7 @@ class K2JSCompilerArguments : CommonCompilerArguments() {
var irDcePrintReachabilityInfo: Boolean by FreezableVar(false)
@Argument(value = "-Xir-property-lazy-initialization", description = "Perform lazy initialization for properties")
var irPropertyLazyInitialization: Boolean by FreezableVar(false)
var irPropertyLazyInitialization: Boolean by FreezableVar(true)
@Argument(value = "-Xir-only", description = "Disables pre-IR backend")
var irOnly: Boolean by FreezableVar(false)