diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 19:23:45 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-11 19:23:45 +0400 |
commit | 484ec26c7d22f4d84b7054b9e243b422acaff3dd (patch) | |
tree | 18027117a60c38ba7f8800c8c1abdcde1ae38b19 /test/data/functions | |
parent | 35b64fb01d6b4da4b0dab840a787abc84d1bff06 (diff) | |
download | dokka-484ec26c7d22f4d84b7054b9e243b422acaff3dd.tar.gz dokka-484ec26c7d22f4d84b7054b9e243b422acaff3dd.tar.bz2 dokka-484ec26c7d22f4d84b7054b9e243b422acaff3dd.zip |
Add tests for packages, implement simple comment text extraction, build model for functions and parameters.
Diffstat (limited to 'test/data/functions')
-rw-r--r-- | test/data/functions/function.kt | 2 | ||||
-rw-r--r-- | test/data/functions/functionWithParams.kt | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/test/data/functions/function.kt b/test/data/functions/function.kt index 878b017b..f8c64f94 100644 --- a/test/data/functions/function.kt +++ b/test/data/functions/function.kt @@ -1,4 +1,4 @@ /** - * doc + * Function fn */ fun fn() {}
\ No newline at end of file diff --git a/test/data/functions/functionWithParams.kt b/test/data/functions/functionWithParams.kt index 9d3a0ad7..135ed399 100644 --- a/test/data/functions/functionWithParams.kt +++ b/test/data/functions/functionWithParams.kt @@ -1,4 +1,6 @@ /** - * doc + * Multiline + * Function + * Documentation */ fun function(x : Int) {}
\ No newline at end of file |