Home
last modified time | relevance | path

Searched refs:allInheritedMembers (Results 1 – 1 of 1) sorted by relevance

/external/dokka/core/src/main/kotlin/Model/
DDocumentationNode.kt99 val allInheritedMembers: List<DocumentationNode> constant
253 val allInheritedMembers = mutableListOf<DocumentationNode>() in simpleName() constant
254 recursiveInheritedMembers(allInheritedMembers) in simpleName()
255 return allInheritedMembers in simpleName()
258 private fun DocumentationNode.recursiveInheritedMembers(allInheritedMembers: MutableList<Documentat… in recursiveInheritedMembers()
259 allInheritedMembers.addAll(inheritedMembers) in recursiveInheritedMembers()
261 node.recursiveInheritedMembers(allInheritedMembers) in recursiveInheritedMembers()