From 451b678c6bdff8b8242f299c600d100929a5171f Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 11 Jul 2014 19:37:02 +0400 Subject: Add processing of classes into model. --- test/data/functions/function.kt | 3 ++- test/data/functions/functionWithParams.kt | 3 ++- 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 f8c64f94..3ed81dfa 100644 --- a/test/data/functions/function.kt +++ b/test/data/functions/function.kt @@ -1,4 +1,5 @@ /** * Function fn */ -fun fn() {} \ No newline at end of file +fun fn() { +} \ No newline at end of file diff --git a/test/data/functions/functionWithParams.kt b/test/data/functions/functionWithParams.kt index 135ed399..559f4f78 100644 --- a/test/data/functions/functionWithParams.kt +++ b/test/data/functions/functionWithParams.kt @@ -3,4 +3,5 @@ * Function * Documentation */ -fun function(x : Int) {} \ No newline at end of file +fun function(x: Int) { +} \ No newline at end of file -- cgit