From 0cfa7215852ebc7493f818968b17e9b337753c70 Mon Sep 17 00:00:00 2001 From: Stanislav Erokhin Date: Fri, 22 Sep 2023 12:59:33 +0200 Subject: [PATCH] [KMP] Remove `experimental` from `-Xmulti-platform` flag #KT-61686 --- .../kotlin/cli/common/arguments/CommonCompilerArguments.kt | 2 +- compiler/testData/cli/js/jsExtraHelp.out | 2 +- compiler/testData/cli/jvm/extraHelp.out | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 8534390b5b9..17887a85db7 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 @@ -196,7 +196,7 @@ abstract class CommonCompilerArguments : CommonToolArguments() { field = value } - @Argument(value = "-Xmulti-platform", description = "Enable experimental language support for multi-platform projects") + @Argument(value = "-Xmulti-platform", description = "Enable language support for multi-platform projects") var multiPlatform = false set(value) { checkFrozen() diff --git a/compiler/testData/cli/js/jsExtraHelp.out b/compiler/testData/cli/js/jsExtraHelp.out index cef43930617..a41974cc1e9 100644 --- a/compiler/testData/cli/js/jsExtraHelp.out +++ b/compiler/testData/cli/js/jsExtraHelp.out @@ -110,7 +110,7 @@ where advanced options include: -Xlist-phases List backend phases -Xmetadata-klib Produce a klib that only contains the declarations metadata -Xmetadata-version Change metadata version of the generated binary files - -Xmulti-platform Enable experimental language support for multi-platform projects + -Xmulti-platform Enable language support for multi-platform projects -Xnew-inference Enable new experimental generic type inference algorithm -Xno-check-actual Do not check presence of 'actual' modifier in multi-platform projects -Xno-inline Disable method inlining diff --git a/compiler/testData/cli/jvm/extraHelp.out b/compiler/testData/cli/jvm/extraHelp.out index 62324eda18e..9beb5a17a0b 100644 --- a/compiler/testData/cli/jvm/extraHelp.out +++ b/compiler/testData/cli/jvm/extraHelp.out @@ -201,7 +201,7 @@ where advanced options include: -Xlist-phases List backend phases -Xmetadata-klib Produce a klib that only contains the declarations metadata -Xmetadata-version Change metadata version of the generated binary files - -Xmulti-platform Enable experimental language support for multi-platform projects + -Xmulti-platform Enable language support for multi-platform projects -Xnew-inference Enable new experimental generic type inference algorithm -Xno-check-actual Do not check presence of 'actual' modifier in multi-platform projects -Xno-inline Disable method inlining