[KLIB] Improve klib debugging implementing KotlinLibrary.toString()

This commit is contained in:
Roman Artemev
2020-11-25 16:58:43 +03:00
parent 2daf0cc11c
commit 697d4675a2
@@ -230,7 +230,11 @@ open class KotlinLibraryImpl(
) : KotlinLibrary,
BaseKotlinLibrary by base,
MetadataLibrary by metadata,
IrLibrary by ir
IrLibrary by ir {
override fun toString(): String {
return "[Klib: ${base.libraryFile.name}, file: ${base.libraryFile.path}]"
}
}
fun createKotlinLibrary(
libraryFile: File,