diff options
Diffstat (limited to 'core/testdata/comments')
-rw-r--r-- | core/testdata/comments/codeBlockComment.kt | 14 | ||||
-rw-r--r-- | core/testdata/comments/directive.kt | 35 | ||||
-rw-r--r-- | core/testdata/comments/emptyDoc.kt | 1 | ||||
-rw-r--r-- | core/testdata/comments/emptyDocButComment.kt | 2 | ||||
-rw-r--r-- | core/testdata/comments/emptySection.kt | 6 | ||||
-rw-r--r-- | core/testdata/comments/multilineDoc.kt | 7 | ||||
-rw-r--r-- | core/testdata/comments/multilineDocWithComment.kt | 8 | ||||
-rw-r--r-- | core/testdata/comments/multilineSection.kt | 7 | ||||
-rw-r--r-- | core/testdata/comments/oneLineDoc.kt | 2 | ||||
-rw-r--r-- | core/testdata/comments/oneLineDocWithComment.kt | 3 | ||||
-rw-r--r-- | core/testdata/comments/oneLineDocWithEmptyLine.kt | 3 | ||||
-rw-r--r-- | core/testdata/comments/quotes.kt | 2 | ||||
-rw-r--r-- | core/testdata/comments/section1.kt | 5 | ||||
-rw-r--r-- | core/testdata/comments/section2.kt | 6 |
14 files changed, 0 insertions, 101 deletions
diff --git a/core/testdata/comments/codeBlockComment.kt b/core/testdata/comments/codeBlockComment.kt deleted file mode 100644 index aa5f5ffc..00000000 --- a/core/testdata/comments/codeBlockComment.kt +++ /dev/null @@ -1,14 +0,0 @@ -/** - * ``` brainfuck - * ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>. - * ``` - */ -val prop1 = "" - - -/** - * ``` - * a + b - c - * ``` - */ -val prop2 = ""
\ No newline at end of file diff --git a/core/testdata/comments/directive.kt b/core/testdata/comments/directive.kt deleted file mode 100644 index b27f5a48..00000000 --- a/core/testdata/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/core/testdata/comments/emptyDoc.kt b/core/testdata/comments/emptyDoc.kt deleted file mode 100644 index b87cce57..00000000 --- a/core/testdata/comments/emptyDoc.kt +++ /dev/null @@ -1 +0,0 @@ -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/emptyDocButComment.kt b/core/testdata/comments/emptyDocButComment.kt deleted file mode 100644 index ceb24753..00000000 --- a/core/testdata/comments/emptyDocButComment.kt +++ /dev/null @@ -1,2 +0,0 @@ -/* comment */ -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/emptySection.kt b/core/testdata/comments/emptySection.kt deleted file mode 100644 index 47d6b1a5..00000000 --- a/core/testdata/comments/emptySection.kt +++ /dev/null @@ -1,6 +0,0 @@ - -/** - * Summary - * @one - */ -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/multilineDoc.kt b/core/testdata/comments/multilineDoc.kt deleted file mode 100644 index 31cfa3a7..00000000 --- a/core/testdata/comments/multilineDoc.kt +++ /dev/null @@ -1,7 +0,0 @@ -/** - * doc1 - * - * doc2 - * doc3 - */ -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/multilineDocWithComment.kt b/core/testdata/comments/multilineDocWithComment.kt deleted file mode 100644 index 88d22642..00000000 --- a/core/testdata/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/core/testdata/comments/multilineSection.kt b/core/testdata/comments/multilineSection.kt deleted file mode 100644 index 6ef4df2c..00000000 --- a/core/testdata/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/core/testdata/comments/oneLineDoc.kt b/core/testdata/comments/oneLineDoc.kt deleted file mode 100644 index 92a40c67..00000000 --- a/core/testdata/comments/oneLineDoc.kt +++ /dev/null @@ -1,2 +0,0 @@ -/** doc */ -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/oneLineDocWithComment.kt b/core/testdata/comments/oneLineDocWithComment.kt deleted file mode 100644 index c8467933..00000000 --- a/core/testdata/comments/oneLineDocWithComment.kt +++ /dev/null @@ -1,3 +0,0 @@ -/** doc */ -// comment -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/oneLineDocWithEmptyLine.kt b/core/testdata/comments/oneLineDocWithEmptyLine.kt deleted file mode 100644 index e364c416..00000000 --- a/core/testdata/comments/oneLineDocWithEmptyLine.kt +++ /dev/null @@ -1,3 +0,0 @@ -/** doc */ - -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/quotes.kt b/core/testdata/comments/quotes.kt deleted file mode 100644 index 47ae6892..00000000 --- a/core/testdata/comments/quotes.kt +++ /dev/null @@ -1,2 +0,0 @@ -/** it's "useful" */ -val property = "test"
\ No newline at end of file diff --git a/core/testdata/comments/section1.kt b/core/testdata/comments/section1.kt deleted file mode 100644 index 7c763b4c..00000000 --- a/core/testdata/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/core/testdata/comments/section2.kt b/core/testdata/comments/section2.kt deleted file mode 100644 index e280793e..00000000 --- a/core/testdata/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 |