diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 17:11:35 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 17:11:35 +0400 |
commit | 044e1b86602662c78bb2ed12b9d645ab10b23429 (patch) | |
tree | 91ca7ece2011b71fa10d0b184ccfa234fbe3130d /src/DocumentationModel.kt | |
parent | 9fec3e15c94969f98596ac04130af6e2d9368a89 (diff) | |
download | dokka-044e1b86602662c78bb2ed12b9d645ab10b23429.tar.gz dokka-044e1b86602662c78bb2ed12b9d645ab10b23429.tar.bz2 dokka-044e1b86602662c78bb2ed12b9d645ab10b23429.zip |
Setup test framework and empty DocumentationModel to kickstart test development.
Diffstat (limited to 'src/DocumentationModel.kt')
-rw-r--r-- | src/DocumentationModel.kt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/DocumentationModel.kt b/src/DocumentationModel.kt new file mode 100644 index 00000000..6da18d42 --- /dev/null +++ b/src/DocumentationModel.kt @@ -0,0 +1,14 @@ +package com.jetbrains.dokka + +import com.intellij.psi.PsiFile +import org.jetbrains.jet.lang.resolve.BindingContext + +public class DocumentationModel { + fun merge(other: DocumentationModel): DocumentationModel { + return DocumentationModel() + } +} + +fun BindingContext.createDocumentation(file: PsiFile): DocumentationModel { + return DocumentationModel() +}
\ No newline at end of file |