Searched refs:DocumentationReference (Results 1 – 2 of 2) sorted by relevance
84 private val references = LinkedHashSet<DocumentationReference>()156 references.add(DocumentationReference(this, to, kind)) in addReferenceTo()159 fun dropReferences(predicate: (DocumentationReference) -> Boolean) { in dropReferences()185 …fun references(kind: RefKind): List<DocumentationReference> = references.filter { it.kind == kind } in <lambda>()186 fun allReferences(): Set<DocumentationReference> = references in allReferences()
27 data class DocumentationReference(val from: DocumentationNode, val to: DocumentationNode, val kind:… class