From 35b64fb01d6b4da4b0dab840a787abc84d1bff06 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Fri, 11 Jul 2014 18:44:53 +0400 Subject: Build model using recursive visitor, include packages in model, add test for function with parameters, unify model and node. --- test/data/functions/function.kt | 4 ++++ test/data/functions/functionWithParams.kt | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 test/data/functions/function.kt create mode 100644 test/data/functions/functionWithParams.kt (limited to 'test/data/functions') diff --git a/test/data/functions/function.kt b/test/data/functions/function.kt new file mode 100644 index 00000000..878b017b --- /dev/null +++ b/test/data/functions/function.kt @@ -0,0 +1,4 @@ +/** + * doc + */ +fun fn() {} \ No newline at end of file diff --git a/test/data/functions/functionWithParams.kt b/test/data/functions/functionWithParams.kt new file mode 100644 index 00000000..9d3a0ad7 --- /dev/null +++ b/test/data/functions/functionWithParams.kt @@ -0,0 +1,4 @@ +/** + * doc + */ +fun function(x : Int) {} \ No newline at end of file -- cgit