[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>(
val serializedMetadata: SerializedMetadata?,
val serializedIr: SerializedIrModule?,
val dataFlowGraph: ByteArray?,
val dataFlowGraph: ByteArray?, // TODO (KT-66218): remove this property
val neededLibraries: List<Dependency>,
)
@@ -116,7 +116,7 @@ fun buildKotlinLibrary(
nopack: Boolean,
perFile: Boolean,
manifestProperties: Properties?,
dataFlowGraph: ByteArray?,
dataFlowGraph: ByteArray?, // TODO (KT-66218): remove this property
builtInsPlatform: BuiltInsPlatform,
nativeTargets: List<String> = emptyList()
): KotlinLibraryLayout {
@@ -54,7 +54,7 @@ fun buildLibrary(
nopack: Boolean,
shortName: String?,
manifestProperties: Properties?,
dataFlowGraph: ByteArray?
dataFlowGraph: ByteArray? // TODO (KT-66218): remove this property
): KonanLibraryLayout {
val libFile = File(output)