From a0bfdbd8cc365cb11c26e81ee7587f0ec25df79d Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 14 Jul 2014 15:00:33 +0400 Subject: Location services, formatting services, initial self-documentation output. --- src/Model/Diagnostics.kt | 2 +- src/Model/DocumentationNode.kt | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) (limited to 'src/Model') diff --git a/src/Model/Diagnostics.kt b/src/Model/Diagnostics.kt index a464107f..1077da7c 100644 --- a/src/Model/Diagnostics.kt +++ b/src/Model/Diagnostics.kt @@ -4,7 +4,7 @@ import org.jetbrains.jet.lang.descriptors.* import org.jetbrains.jet.lang.resolve.name.* import org.jetbrains.jet.lang.resolve.BindingContext -fun BindingContext.checkResolveChildren(node : DocumentationNode) { +fun BindingContext.checkResolveChildren(node: DocumentationNode) { if (node.kind != DocumentationNode.Kind.Module && node.kind != DocumentationNode.Kind.Package) { // TODO: we don't resolve packages and modules for now diff --git a/src/Model/DocumentationNode.kt b/src/Model/DocumentationNode.kt index 8132c419..5469774d 100644 --- a/src/Model/DocumentationNode.kt +++ b/src/Model/DocumentationNode.kt @@ -73,4 +73,10 @@ public open class DocumentationNode(val descriptor: DeclarationDescriptor, } - +val DocumentationNode.path: List + get() { + val parent = owner + if (parent == null) + return listOf(this) + return parent.path + this + } \ No newline at end of file -- cgit