aboutsummaryrefslogtreecommitdiff
path: root/src/Kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/Kotlin')
-rw-r--r--src/Kotlin/DocumentationBuilder.kt28
1 files changed, 1 insertions, 27 deletions
diff --git a/src/Kotlin/DocumentationBuilder.kt b/src/Kotlin/DocumentationBuilder.kt
index 068f251a..04b707af 100644
--- a/src/Kotlin/DocumentationBuilder.kt
+++ b/src/Kotlin/DocumentationBuilder.kt
@@ -191,35 +191,9 @@ class DocumentationBuilder(val session: ResolveSession, val options: Documentati
}
fun DocumentationNode.appendSourceLink(sourceElement: SourceElement) {
- val psi = getTargetElement(sourceElement)
- val path = psi?.getContainingFile()?.getVirtualFile()?.getPath()
- if (path == null) {
- return
- }
- val absPath = File(path).getAbsolutePath()
- val linkDef = findSourceLinkDefinition(absPath)
- if (linkDef != null) {
- var url = linkDef.url + path.substring(linkDef.path.length())
- if (linkDef.lineSuffix != null) {
- val doc = PsiDocumentManager.getInstance(psi!!.getProject()).getDocument(psi.getContainingFile())
- if (doc != null) {
- // IJ uses 0-based line-numbers; external source browsers use 1-based
- val line = doc.getLineNumber(psi.getTextRange().getStartOffset()) + 1
- url += linkDef.lineSuffix + line.toString()
- }
- }
- append(DocumentationNode(url, Content.Empty, DocumentationNode.Kind.SourceUrl),
- DocumentationReference.Kind.Detail);
- }
- }
-
- private fun getTargetElement(sourceElement: SourceElement): PsiElement? {
- val psi = sourceElement.getPsi()
- return if (psi is PsiNameIdentifierOwner) psi.getNameIdentifier() else psi
+ appendSourceLink(sourceElement.getPsi(), options.sourceLinks)
}
- fun findSourceLinkDefinition(path: String) = options.sourceLinks.firstOrNull { path.startsWith(it.path) }
-
fun DocumentationNode.appendChild(descriptor: DeclarationDescriptor, kind: DocumentationReference.Kind) {
// do not include generated code
if (descriptor is CallableMemberDescriptor && descriptor.getKind() != CallableMemberDescriptor.Kind.DECLARATION)