[LL API] Add KDoc for 'KtNotUnderContentRootModule#file'.

This commit is contained in:
Yan Zhulanow
2023-01-19 18:28:52 +09:00
committed by Space Team
parent 562952080e
commit 9bd1a24c13
@@ -172,6 +172,10 @@ public class KtBuiltinsModule(
* A set of sources which lives outside project content root. E.g, testdata files or source files of some other project.
*/
public interface KtNotUnderContentRootModule : KtModule {
/**
* Module owner file.
* A separate module is created for each file outside a content root.
*/
public val file: PsiFile?
get() = null
}