diff options
author | Dmitry Jemerov <intelliyole@gmail.com> | 2015-07-09 17:45:52 +0200 |
---|---|---|
committer | Dmitry Jemerov <intelliyole@gmail.com> | 2015-07-09 17:45:52 +0200 |
commit | 68caff40cfce97bba23f505ec7db33a0d406e709 (patch) | |
tree | fa09c8bb187a46a0a1eacd2d722ab6209935e24e /src/Kotlin | |
parent | 3921ac60ee89bbd02444f85e8b8b52c7f77c6e27 (diff) | |
parent | 2f3bd214b78c99d06e4dac9e7ff474fd8f0d7ec5 (diff) | |
download | dokka-68caff40cfce97bba23f505ec7db33a0d406e709.tar.gz dokka-68caff40cfce97bba23f505ec7db33a0d406e709.tar.bz2 dokka-68caff40cfce97bba23f505ec7db33a0d406e709.zip |
Merge pull request #26 from bintree/master
Fix project after types enhancement from annotations
Diffstat (limited to 'src/Kotlin')
-rw-r--r-- | src/Kotlin/ContentBuilder.kt | 2 | ||||
-rw-r--r-- | src/Kotlin/DocumentationBuilder.kt | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Kotlin/ContentBuilder.kt b/src/Kotlin/ContentBuilder.kt index 2bf960a6..273009ab 100644 --- a/src/Kotlin/ContentBuilder.kt +++ b/src/Kotlin/ContentBuilder.kt @@ -139,7 +139,7 @@ fun DocumentationBuilder.functionBody(descriptor: DeclarationDescriptor, functio val bodyExpression = psiElement.getBodyExpression() when (bodyExpression) { is JetBlockExpression -> bodyExpression.getText().removeSurrounding("{", "}") - else -> bodyExpression.getText() + else -> bodyExpression!!.getText() } } else -> psiElement.getText() diff --git a/src/Kotlin/DocumentationBuilder.kt b/src/Kotlin/DocumentationBuilder.kt index 8bbd7743..bea2f6fa 100644 --- a/src/Kotlin/DocumentationBuilder.kt +++ b/src/Kotlin/DocumentationBuilder.kt @@ -115,7 +115,7 @@ class DocumentationBuilder(val resolutionFacade: ResolutionFacade, } fun DeclarationDescriptor.isDeprecated(): Boolean = getAnnotations().any { - DescriptorUtils.getFqName(it.getType().getConstructor().getDeclarationDescriptor()).asString() == "kotlin.deprecated" + DescriptorUtils.getFqName(it.getType().getConstructor().getDeclarationDescriptor()!!).asString() == "kotlin.deprecated" } || (this is ConstructorDescriptor && getContainingDeclaration().isDeprecated()) fun DeclarationDescriptor.signature(): String = when(this) { @@ -664,7 +664,7 @@ class DocumentationBuilder(val resolutionFacade: ResolutionFacade, } fun ReceiverParameterDescriptor.build(): DocumentationNode { - var receiverClass: DeclarationDescriptor = getType().getConstructor().getDeclarationDescriptor() + var receiverClass: DeclarationDescriptor = getType().getConstructor().getDeclarationDescriptor()!! if ((receiverClass as? ClassDescriptor)?.isCompanionObject() ?: false) { receiverClass = receiverClass.getContainingDeclaration()!! } |