From 1fc5f504c77e98f80c7f6921e26ca7c9463c8bf3 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 11 Jul 2014 23:47:29 +0400 Subject: Create resolution scopes for all entities to resolve names inside doc-comments. --- test/src/TestAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/src') diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt index e5669569..282697da 100644 --- a/test/src/TestAPI.kt +++ b/test/src/TestAPI.kt @@ -28,7 +28,7 @@ public fun verifyModel(vararg files: String, verifier: (DocumentationModel) -> U } val result = environment.processFiles { context, file -> - context.createSourceModel(file) + context.createDocumentationModel(file) }.fold(DocumentationModel()) {(aggregate, item) -> aggregate.merge(item) } verifier(result) Disposer.dispose(environment) -- cgit