aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIlya Ryzhenkov <orangy@jetbrains.com>2014-07-14 16:09:25 +0400
committerIlya Ryzhenkov <orangy@jetbrains.com>2014-07-14 16:09:25 +0400
commitf97d9ccd2282ba13bf3ce5e938bd2932b27c8c47 (patch)
treed8bdc5e549db2f0f91f3fa6438042547804388fc /src
parent5dbe1421a9011363aaca9a81105cdd067463219c (diff)
downloaddokka-f97d9ccd2282ba13bf3ce5e938bd2932b27c8c47.tar.gz
dokka-f97d9ccd2282ba13bf3ce5e938bd2932b27c8c47.tar.bz2
dokka-f97d9ccd2282ba13bf3ce5e938bd2932b27c8c47.zip
Suppress resolve verification while working on markup and generation.
Diffstat (limited to 'src')
-rw-r--r--src/Model/DocumentationModule.kt4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Model/DocumentationModule.kt b/src/Model/DocumentationModule.kt
index 6b2773ed..70589dba 100644
--- a/src/Model/DocumentationModule.kt
+++ b/src/Model/DocumentationModule.kt
@@ -20,6 +20,8 @@ fun BindingContext.createDocumentationModule(module: ModuleDescriptor, packages:
val pkg = module.getPackage(packageName)
pkg!!.accept(DocumentationBuildingVisitor(this, visitor), documentationModule)
}
- checkResolveChildren(documentationModule)
+
+ // TODO: Uncomment for resolve verification
+ // checkResolveChildren(documentationModule)
return documentationModule
}