From 778e2b3f7ff62971e18a49d81a8825e5dd894c2e Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Mon, 29 Sep 2014 20:54:59 +0400 Subject: Extract content model, make doc model independent from descriptors, parse doccomments with custom parser, some tests failing due to hanging new lines. --- test/data/comments/explicitSummary.kt | 6 ++++++ test/data/comments/multilineDoc.kt | 1 + 2 files changed, 7 insertions(+) create mode 100644 test/data/comments/explicitSummary.kt (limited to 'test/data/comments') diff --git a/test/data/comments/explicitSummary.kt b/test/data/comments/explicitSummary.kt new file mode 100644 index 00000000..68f75c99 --- /dev/null +++ b/test/data/comments/explicitSummary.kt @@ -0,0 +1,6 @@ + +/** + * $$summary: Summary + * $$description: Description + */ +val property = "test" \ No newline at end of file diff --git a/test/data/comments/multilineDoc.kt b/test/data/comments/multilineDoc.kt index 960c78bd..31cfa3a7 100644 --- a/test/data/comments/multilineDoc.kt +++ b/test/data/comments/multilineDoc.kt @@ -1,5 +1,6 @@ /** * doc1 + * * doc2 * doc3 */ -- cgit