blob: d148cd34b968f42cf1d112ceb348c9a376b10952 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package org.jetbrains.dokka.base.translators
import org.jetbrains.dokka.links.DRI
import org.jetbrains.dokka.model.AncestryNode
import org.jetbrains.dokka.model.TypeConstructor
internal fun AncestryNode.typeConstructorsBeingExceptions(): List<TypeConstructor> {
fun traverseSupertypes(ancestry: AncestryNode): List<TypeConstructor> =
listOf(ancestry.typeConstructor) + (ancestry.superclass?.let(::traverseSupertypes) ?: emptyList())
return superclass?.let(::traverseSupertypes)?.filter { type -> type.dri.isDirectlyAnException() } ?: emptyList()
}
internal fun DRI.isDirectlyAnException(): Boolean =
toString().let { stringed ->
stringed == "kotlin/Exception///PointingToDeclaration/" ||
stringed == "java.lang/Exception///PointingToDeclaration/"
}
|