From 16f52f4c50253d1a8c5bcd911b1540b6e6f2e5ca Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Mon, 19 Dec 2022 16:21:04 +0100 Subject: [PATCH] K2: use LightTree by default with K2 --- .../kotlin/cli/common/arguments/CommonCompilerArguments.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/CommonCompilerArguments.kt b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/CommonCompilerArguments.kt index fbbdcef1d73..581c6a8127d 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/CommonCompilerArguments.kt +++ b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/CommonCompilerArguments.kt @@ -323,7 +323,7 @@ abstract class CommonCompilerArguments : CommonToolArguments() { value = "-Xuse-fir-lt", description = "Compile using LightTree parser with Front-end IR. Warning: this feature is far from being production-ready" ) - var useFirLT: Boolean by FreezableVar(false) + var useFirLT: Boolean by FreezableVar(true) @Argument( value = "-Xdisable-ultra-light-classes",