From 39631054c58df5841ea268b7002b820ec55f6e0a Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Thu, 3 Dec 2015 16:22:11 +0100 Subject: restructure Dokka build to use Gradle for everything except for the Maven plugin --- test/data/functions/annotatedFunction.kt | 2 -- .../functions/annotatedFunctionWithAnnotationParameters.kt | 7 ------- test/data/functions/function.kt | 5 ----- test/data/functions/functionWithAnnotatedParam.kt | 7 ------- test/data/functions/functionWithDefaultParameter.kt | 1 - test/data/functions/functionWithNoinlineParam.kt | 2 -- test/data/functions/functionWithNotDocumentedAnnotation.kt | 2 -- test/data/functions/functionWithParams.kt | 8 -------- test/data/functions/functionWithReceiver.kt | 11 ----------- test/data/functions/genericFunction.kt | 5 ----- test/data/functions/genericFunctionWithConstraints.kt | 6 ------ test/data/functions/inlineFunction.kt | 2 -- 12 files changed, 58 deletions(-) delete mode 100644 test/data/functions/annotatedFunction.kt delete mode 100644 test/data/functions/annotatedFunctionWithAnnotationParameters.kt delete mode 100644 test/data/functions/function.kt delete mode 100644 test/data/functions/functionWithAnnotatedParam.kt delete mode 100644 test/data/functions/functionWithDefaultParameter.kt delete mode 100644 test/data/functions/functionWithNoinlineParam.kt delete mode 100644 test/data/functions/functionWithNotDocumentedAnnotation.kt delete mode 100644 test/data/functions/functionWithParams.kt delete mode 100644 test/data/functions/functionWithReceiver.kt delete mode 100644 test/data/functions/genericFunction.kt delete mode 100644 test/data/functions/genericFunctionWithConstraints.kt delete mode 100644 test/data/functions/inlineFunction.kt (limited to 'test/data/functions') diff --git a/test/data/functions/annotatedFunction.kt b/test/data/functions/annotatedFunction.kt deleted file mode 100644 index f7abbf6c..00000000 --- a/test/data/functions/annotatedFunction.kt +++ /dev/null @@ -1,2 +0,0 @@ -@Strictfp fun f() { -} diff --git a/test/data/functions/annotatedFunctionWithAnnotationParameters.kt b/test/data/functions/annotatedFunctionWithAnnotationParameters.kt deleted file mode 100644 index e559713a..00000000 --- a/test/data/functions/annotatedFunctionWithAnnotationParameters.kt +++ /dev/null @@ -1,7 +0,0 @@ -@Target(AnnotationTarget.VALUE_PARAMETER) -@Retention(AnnotationRetention.SOURCE) -@MustBeDocumented -public annotation class Fancy(val size: Int) - - -@Fancy(1) fun f() {} diff --git a/test/data/functions/function.kt b/test/data/functions/function.kt deleted file mode 100644 index 3ed81dfa..00000000 --- a/test/data/functions/function.kt +++ /dev/null @@ -1,5 +0,0 @@ -/** - * Function fn - */ -fun fn() { -} \ No newline at end of file diff --git a/test/data/functions/functionWithAnnotatedParam.kt b/test/data/functions/functionWithAnnotatedParam.kt deleted file mode 100644 index f858e671..00000000 --- a/test/data/functions/functionWithAnnotatedParam.kt +++ /dev/null @@ -1,7 +0,0 @@ -@Target(AnnotationTarget.VALUE_PARAMETER) -@Retention(AnnotationRetention.SOURCE) -@MustBeDocumented -public annotation class Fancy - -fun function(@Fancy notInlined: () -> Unit) { -} diff --git a/test/data/functions/functionWithDefaultParameter.kt b/test/data/functions/functionWithDefaultParameter.kt deleted file mode 100644 index 3a3a102f..00000000 --- a/test/data/functions/functionWithDefaultParameter.kt +++ /dev/null @@ -1 +0,0 @@ -fun f(x: String = "") {} diff --git a/test/data/functions/functionWithNoinlineParam.kt b/test/data/functions/functionWithNoinlineParam.kt deleted file mode 100644 index 640bec83..00000000 --- a/test/data/functions/functionWithNoinlineParam.kt +++ /dev/null @@ -1,2 +0,0 @@ -fun function(noinline notInlined: () -> Unit) { -} diff --git a/test/data/functions/functionWithNotDocumentedAnnotation.kt b/test/data/functions/functionWithNotDocumentedAnnotation.kt deleted file mode 100644 index 3c7e2ff9..00000000 --- a/test/data/functions/functionWithNotDocumentedAnnotation.kt +++ /dev/null @@ -1,2 +0,0 @@ -@Suppress("FOO") fun f() { -} diff --git a/test/data/functions/functionWithParams.kt b/test/data/functions/functionWithParams.kt deleted file mode 100644 index 85c49368..00000000 --- a/test/data/functions/functionWithParams.kt +++ /dev/null @@ -1,8 +0,0 @@ -/** - * Multiline - * - * Function - * Documentation - */ -fun function(/** parameter */ x: Int) { -} \ No newline at end of file diff --git a/test/data/functions/functionWithReceiver.kt b/test/data/functions/functionWithReceiver.kt deleted file mode 100644 index c8473251..00000000 --- a/test/data/functions/functionWithReceiver.kt +++ /dev/null @@ -1,11 +0,0 @@ -/** - * Function with receiver - */ -fun String.fn() { -} - -/** - * Function with receiver - */ -fun String.fn(x: Int) { -} diff --git a/test/data/functions/genericFunction.kt b/test/data/functions/genericFunction.kt deleted file mode 100644 index 05a65070..00000000 --- a/test/data/functions/genericFunction.kt +++ /dev/null @@ -1,5 +0,0 @@ - -/** - * generic function - */ -private fun generic() {} \ No newline at end of file diff --git a/test/data/functions/genericFunctionWithConstraints.kt b/test/data/functions/genericFunctionWithConstraints.kt deleted file mode 100644 index 5f22f8c5..00000000 --- a/test/data/functions/genericFunctionWithConstraints.kt +++ /dev/null @@ -1,6 +0,0 @@ - -/** - * generic function - */ -public fun generic() { -} \ No newline at end of file diff --git a/test/data/functions/inlineFunction.kt b/test/data/functions/inlineFunction.kt deleted file mode 100644 index 11c19672..00000000 --- a/test/data/functions/inlineFunction.kt +++ /dev/null @@ -1,2 +0,0 @@ -inline fun f() { -} -- cgit