From 3aafb7607714a5a13e902e5e4a912af012fb355f Mon Sep 17 00:00:00 2001 From: Svyatoslav Kuzmich Date: Thu, 11 Nov 2021 17:15:53 +0300 Subject: [PATCH] [Wasm] Enable name section in CLI by default --- .../kotlin/cli/common/arguments/K2JSCompilerArguments.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JSCompilerArguments.kt b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JSCompilerArguments.kt index 32509a47e69..7040c5e2947 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JSCompilerArguments.kt +++ b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JSCompilerArguments.kt @@ -233,7 +233,7 @@ class K2JSCompilerArguments : CommonCompilerArguments() { var wasm: Boolean by FreezableVar(false) @Argument(value = "-Xwasm-debug-info", description = "Add debug info to WebAssembly compiled module") - var wasmDebug: Boolean by FreezableVar(false) + var wasmDebug: Boolean by FreezableVar(true) @Argument( value = "-Xwasm-launcher",