[KLIB] Mark DFG serialization code as unused and planned for removal

^KT-66218
This commit is contained in:
Dmitriy Dolovov
2024-02-28 21:25:37 +01:00
committed by Space Team
parent d8d8f24f62
commit 4e5a36de18
3 changed files with 3 additions and 3 deletions
@@ -63,7 +63,7 @@ class KotlinFileSerializedData private constructor(
class SerializerOutput<Dependency : KotlinLibrary>( class SerializerOutput<Dependency : KotlinLibrary>(
val serializedMetadata: SerializedMetadata?, val serializedMetadata: SerializedMetadata?,
val serializedIr: SerializedIrModule?, val serializedIr: SerializedIrModule?,
val dataFlowGraph: ByteArray?, val dataFlowGraph: ByteArray?, // TODO (KT-66218): remove this property
val neededLibraries: List<Dependency>, val neededLibraries: List<Dependency>,
) )
@@ -116,7 +116,7 @@ fun buildKotlinLibrary(
nopack: Boolean, nopack: Boolean,
perFile: Boolean, perFile: Boolean,
manifestProperties: Properties?, manifestProperties: Properties?,
dataFlowGraph: ByteArray?, dataFlowGraph: ByteArray?, // TODO (KT-66218): remove this property
builtInsPlatform: BuiltInsPlatform, builtInsPlatform: BuiltInsPlatform,
nativeTargets: List<String> = emptyList() nativeTargets: List<String> = emptyList()
): KotlinLibraryLayout { ): KotlinLibraryLayout {
@@ -54,7 +54,7 @@ fun buildLibrary(
nopack: Boolean, nopack: Boolean,
shortName: String?, shortName: String?,
manifestProperties: Properties?, manifestProperties: Properties?,
dataFlowGraph: ByteArray? dataFlowGraph: ByteArray? // TODO (KT-66218): remove this property
): KonanLibraryLayout { ): KonanLibraryLayout {
val libFile = File(output) val libFile = File(output)