AA: add JDK_HOME as dependent SDK module

This commit is contained in:
Jinseong Jeon
2022-05-03 23:24:47 -07:00
committed by Ilya Kirillov
parent af32a65c78
commit 3f05ba04a9
6 changed files with 92 additions and 19 deletions
@@ -15,10 +15,10 @@ public abstract class ProjectStructureProvider {
public abstract fun getKtModuleForKtElement(element: PsiElement): KtModule
/**
* Returns all [KtLibraryModule]s in this project.
* Returns all dependent [KtBinaryModule]s in this project.
*/
// TODO: We rather need a session or facade that maintains this information.
public abstract fun getKtLibraryModules(): Collection<KtLibraryModule>
public abstract fun getKtBinaryModules(): Collection<KtBinaryModule>
public abstract fun getStdlibWithBuiltinsModule(module: KtModule): KtLibraryModule?
}