diff options
author | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-12 03:55:20 +0400 |
---|---|---|
committer | Ilya Ryzhenkov <orangy@jetbrains.com> | 2014-07-12 03:55:20 +0400 |
commit | a83488aae453f1bf01cfb5507317acf0b9ddfb82 (patch) | |
tree | ab1c3e2370480f182ac75a2016bf2dc95d1637bb /test/data/comments | |
parent | d627d2cfdfebcddd63669734efb82dfc66e7c7fe (diff) | |
download | dokka-a83488aae453f1bf01cfb5507317acf0b9ddfb82.tar.gz dokka-a83488aae453f1bf01cfb5507317acf0b9ddfb82.tar.bz2 dokka-a83488aae453f1bf01cfb5507317acf0b9ddfb82.zip |
Implement section parsing.
Diffstat (limited to 'test/data/comments')
-rw-r--r-- | test/data/comments/emptySection.kt | 6 | ||||
-rw-r--r-- | test/data/comments/emptySectionOnOneLine.kt | 2 | ||||
-rw-r--r-- | test/data/comments/multilineSection.kt | 7 | ||||
-rw-r--r-- | test/data/comments/section1.kt | 5 | ||||
-rw-r--r-- | test/data/comments/section2.kt | 6 | ||||
-rw-r--r-- | test/data/comments/sectionOnOneLine.kt | 2 |
6 files changed, 28 insertions, 0 deletions
diff --git a/test/data/comments/emptySection.kt b/test/data/comments/emptySection.kt new file mode 100644 index 00000000..0e618b2a --- /dev/null +++ b/test/data/comments/emptySection.kt @@ -0,0 +1,6 @@ + +/** + * Summary + * $one + */ +val property = "test"
\ No newline at end of file diff --git a/test/data/comments/emptySectionOnOneLine.kt b/test/data/comments/emptySectionOnOneLine.kt new file mode 100644 index 00000000..4bb6c6f6 --- /dev/null +++ b/test/data/comments/emptySectionOnOneLine.kt @@ -0,0 +1,2 @@ +/** Summary $one*/ +val property = "test"
\ No newline at end of file diff --git a/test/data/comments/multilineSection.kt b/test/data/comments/multilineSection.kt new file mode 100644 index 00000000..be83b641 --- /dev/null +++ b/test/data/comments/multilineSection.kt @@ -0,0 +1,7 @@ +/** + * Summary + * $one + * line one + * line two + */ +val property = "test"
\ No newline at end of file diff --git a/test/data/comments/section1.kt b/test/data/comments/section1.kt new file mode 100644 index 00000000..0a27d394 --- /dev/null +++ b/test/data/comments/section1.kt @@ -0,0 +1,5 @@ +/** + * Summary + * $one section one + */ +val property = "test"
\ No newline at end of file diff --git a/test/data/comments/section2.kt b/test/data/comments/section2.kt new file mode 100644 index 00000000..a34aa853 --- /dev/null +++ b/test/data/comments/section2.kt @@ -0,0 +1,6 @@ +/** + * Summary + * $one section one + * $two section two + */ +val property = "test"
\ No newline at end of file diff --git a/test/data/comments/sectionOnOneLine.kt b/test/data/comments/sectionOnOneLine.kt new file mode 100644 index 00000000..cab5c69c --- /dev/null +++ b/test/data/comments/sectionOnOneLine.kt @@ -0,0 +1,2 @@ +/** Summary $one same line */ +val property = "test"
\ No newline at end of file |