From 9bd1a24c138061bf76e410b64afacb11e04961df Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Thu, 19 Jan 2023 18:28:52 +0900 Subject: [PATCH] [LL API] Add KDoc for 'KtNotUnderContentRootModule#file'. --- .../jetbrains/kotlin/analysis/project/structure/KtModule.kt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/analysis/project-structure/src/org/jetbrains/kotlin/analysis/project/structure/KtModule.kt b/analysis/project-structure/src/org/jetbrains/kotlin/analysis/project/structure/KtModule.kt index acf62c1bb22..3eb75940906 100644 --- a/analysis/project-structure/src/org/jetbrains/kotlin/analysis/project/structure/KtModule.kt +++ b/analysis/project-structure/src/org/jetbrains/kotlin/analysis/project/structure/KtModule.kt @@ -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 }