diff options
Diffstat (limited to 'test/data/comments')
-rw-r--r-- | test/data/comments/directive.kt | 35 | ||||
-rw-r--r-- | test/data/comments/emptyDoc.kt | 1 | ||||
-rw-r--r-- | test/data/comments/emptyDocButComment.kt | 2 | ||||
-rw-r--r-- | test/data/comments/emptySection.kt | 6 | ||||
-rw-r--r-- | test/data/comments/multilineDoc.kt | 7 | ||||
-rw-r--r-- | test/data/comments/multilineDocWithComment.kt | 8 | ||||
-rw-r--r-- | test/data/comments/multilineSection.kt | 7 | ||||
-rw-r--r-- | test/data/comments/oneLineDoc.kt | 2 | ||||
-rw-r--r-- | test/data/comments/oneLineDocWithComment.kt | 3 | ||||
-rw-r--r-- | test/data/comments/oneLineDocWithEmptyLine.kt | 3 | ||||
-rw-r--r-- | test/data/comments/section1.kt | 5 | ||||
-rw-r--r-- | test/data/comments/section2.kt | 6 |
12 files changed, 0 insertions, 85 deletions
diff --git a/test/data/comments/directive.kt b/test/data/comments/directive.kt deleted file mode 100644 index b27f5a48..00000000 --- a/test/data/comments/directive.kt +++ /dev/null @@ -1,35 +0,0 @@ -/** - * Summary - * - * @sample example1 - * @sample example2 - * @sample X.example3 - * @sample X.Y.example4 - */ -val property = "test" - -fun example1(node: String) = if (true) { - println(property) -} - -fun example2(node: String) { - if (true) { - println(property) - } -} - -class X { - fun example3(node: String) { - if (true) { - println(property) - } - } - - class Y { - fun example4(node: String) { - if (true) { - println(property) - } - } - } -} diff --git a/test/data/comments/emptyDoc.kt b/test/data/comments/emptyDoc.kt deleted file mode 100644 index b87cce57..00000000 --- a/test/data/comments/emptyDoc.kt +++ /dev/null @@ -1 +0,0 @@ -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/emptyDocButComment.kt b/test/data/comments/emptyDocButComment.kt deleted file mode 100644 index ceb24753..00000000 --- a/test/data/comments/emptyDocButComment.kt +++ /dev/null @@ -1,2 +0,0 @@ -/* comment */ -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/emptySection.kt b/test/data/comments/emptySection.kt deleted file mode 100644 index 47d6b1a5..00000000 --- a/test/data/comments/emptySection.kt +++ /dev/null @@ -1,6 +0,0 @@ - -/** - * Summary - * @one - */ -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/multilineDoc.kt b/test/data/comments/multilineDoc.kt deleted file mode 100644 index 31cfa3a7..00000000 --- a/test/data/comments/multilineDoc.kt +++ /dev/null @@ -1,7 +0,0 @@ -/** - * doc1 - * - * doc2 - * doc3 - */ -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/multilineDocWithComment.kt b/test/data/comments/multilineDocWithComment.kt deleted file mode 100644 index 88d22642..00000000 --- a/test/data/comments/multilineDocWithComment.kt +++ /dev/null @@ -1,8 +0,0 @@ -/** - * doc1 - * - * doc2 - * doc3 - */ -// comment -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/multilineSection.kt b/test/data/comments/multilineSection.kt deleted file mode 100644 index 6ef4df2c..00000000 --- a/test/data/comments/multilineSection.kt +++ /dev/null @@ -1,7 +0,0 @@ -/** - * Summary - * @one - * line one - * line two - */ -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/oneLineDoc.kt b/test/data/comments/oneLineDoc.kt deleted file mode 100644 index 92a40c67..00000000 --- a/test/data/comments/oneLineDoc.kt +++ /dev/null @@ -1,2 +0,0 @@ -/** doc */ -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/oneLineDocWithComment.kt b/test/data/comments/oneLineDocWithComment.kt deleted file mode 100644 index c8467933..00000000 --- a/test/data/comments/oneLineDocWithComment.kt +++ /dev/null @@ -1,3 +0,0 @@ -/** doc */ -// comment -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/oneLineDocWithEmptyLine.kt b/test/data/comments/oneLineDocWithEmptyLine.kt deleted file mode 100644 index e364c416..00000000 --- a/test/data/comments/oneLineDocWithEmptyLine.kt +++ /dev/null @@ -1,3 +0,0 @@ -/** doc */ - -val property = "test"
\ No newline at end of file diff --git a/test/data/comments/section1.kt b/test/data/comments/section1.kt deleted file mode 100644 index 7c763b4c..00000000 --- a/test/data/comments/section1.kt +++ /dev/null @@ -1,5 +0,0 @@ -/** - * 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 deleted file mode 100644 index e280793e..00000000 --- a/test/data/comments/section2.kt +++ /dev/null @@ -1,6 +0,0 @@ -/** - * Summary - * @one section one - * @two section two - */ -val property = "test"
\ No newline at end of file |