From e6a5614321caf72006e3ff6b5c48f60869f03e6c Mon Sep 17 00:00:00 2001 From: Anton Bannykh Date: Wed, 1 Dec 2021 13:59:30 +0300 Subject: [PATCH] [JS IR] don't hash module names --- .../ir/backend/js/transformers/irToJs/MultiModuleSupport.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/transformers/irToJs/MultiModuleSupport.kt b/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/transformers/irToJs/MultiModuleSupport.kt index 7a2702fc8fa..c5e0653a37f 100644 --- a/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/transformers/irToJs/MultiModuleSupport.kt +++ b/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/transformers/irToJs/MultiModuleSupport.kt @@ -123,5 +123,5 @@ val IrModuleFragment.safeName: String if (result.startsWith('<')) result = result.substring(1) if (result.endsWith('>')) result = result.substring(0, result.length - 1) - return sanitizeName("kotlin_$result") + return sanitizeName("kotlin_$result", false) }