aboutsummaryrefslogtreecommitdiff
path: root/src/Model/DocumentationResolver.kt
blob: 70ee4aaee63765782d0a375483a73625f5cdf0f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.jetbrains.dokka

import org.jetbrains.jet.lang.resolve.scopes.*


fun DocumentationNode.resolve(): DocumentationNode {
    return this
}

fun DocumentationNode.resolve(scope: JetScope): DocumentationNode {
    return this
}