From 51cff97b78258746157bc7f1aa74f06f5f8ae66b Mon Sep 17 00:00:00 2001 From: Roman Artemev Date: Wed, 18 Nov 2020 20:39:06 +0300 Subject: [PATCH] [JS IR BE] Drop implicit declaration file --- .../org/jetbrains/kotlin/ir/backend/js/JsIrBackendContext.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/JsIrBackendContext.kt b/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/JsIrBackendContext.kt index c91e5eaa544..1a69d6935fd 100644 --- a/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/JsIrBackendContext.kt +++ b/compiler/ir/backend.js/src/org/jetbrains/kotlin/ir/backend/js/JsIrBackendContext.kt @@ -76,9 +76,6 @@ class JsIrBackendContext( val declarationLevelJsModules = mutableListOf() private val internalPackageFragmentDescriptor = EmptyPackageFragmentDescriptor(builtIns.builtInsModule, FqName("kotlin.js.internal")) - val implicitDeclarationFile = run { - syntheticFile("implicitDeclarations", irModuleFragment) - } private fun syntheticFile(name: String, module: IrModuleFragment): IrFile { return IrFileImpl(object : SourceManager.FileEntry {