[AA] Add toString implementation for KtLibraryModuleImpl

- This allows stable mentions of test module libraries in output test
  data.

^KT-56288
This commit is contained in:
Marco Pennekamp
2024-01-24 22:46:25 +01:00
committed by Space Team
parent 56fd4b562b
commit 56a08319ec
@@ -27,4 +27,6 @@ class KtLibraryModuleImpl(
override val directRegularDependencies: MutableList<KtModule> = mutableListOf()
override val directDependsOnDependencies: MutableList<KtModule> = mutableListOf()
override val directFriendDependencies: MutableList<KtModule> = mutableListOf()
}
override fun toString(): String = libraryName
}