From 484ec26c7d22f4d84b7054b9e243b422acaff3dd Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 11 Jul 2014 19:23:45 +0400 Subject: Add tests for packages, implement simple comment text extraction, build model for functions and parameters. --- test/data/functions/function.kt | 2 +- test/data/functions/functionWithParams.kt | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'test/data/functions') 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 -- cgit