[LL FIR] KT-55329 Rename refinementDependency to dependsOnDependency

- The new Kotlin MPP name for `refinementDependency` is
  `dependsOnDependency`.
This commit is contained in:
Marco Pennekamp
2022-12-19 21:35:16 +01:00
committed by teamcity
parent fa352fd20e
commit 7c96124a38
18 changed files with 62 additions and 63 deletions
@@ -71,7 +71,7 @@ internal class KtFe10SymbolContainingDeclarationProvider(
override val librarySources: KtLibrarySourceModule? = null
override fun getBinaryRoots(): Collection<Path> = listOf(libraryPath)
override val directRegularDependencies: List<KtModule> = emptyList()
override val directRefinementDependencies: List<KtModule> = emptyList()
override val directDependsOnDependencies: List<KtModule> = emptyList()
override val directFriendDependencies: List<KtModule> = emptyList()
override val contentScope: GlobalSearchScope = ProjectScope.getLibrariesScope(project)
override val platform: TargetPlatform