Made LateInitLowering the same in K/N as in other BEs

This commit is contained in:
Igor Chevdar
2019-01-28 13:33:58 +03:00
parent db487a622a
commit c765bd74d7
3 changed files with 13 additions and 18 deletions
@@ -67,7 +67,7 @@ private val ArrayInlineConstructorLoweringPhase = makeJsPhase(
)
private val LateinitLoweringPhase = makeJsPhase(
{ context, module -> LateinitLowering(context, true).lower(module) },
{ context, module -> LateinitLowering(context).lower(module) },
name = "LateinitLowering",
description = "Insert checks for lateinit field references"
)