diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-12-03 16:22:11 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-12-03 16:22:49 +0100 |
commit | 39631054c58df5841ea268b7002b820ec55f6e0a (patch) | |
tree | cefedd8411c859243bd181568e16fcdd372a38c8 /test/data/functions | |
parent | 797cb4732c53bf1e3b2091add8cf731fc436607f (diff) | |
download | dokka-39631054c58df5841ea268b7002b820ec55f6e0a.tar.gz dokka-39631054c58df5841ea268b7002b820ec55f6e0a.tar.bz2 dokka-39631054c58df5841ea268b7002b820ec55f6e0a.zip |
restructure Dokka build to use Gradle for everything except for the Maven plugin
Diffstat (limited to 'test/data/functions')
-rw-r--r-- | test/data/functions/annotatedFunction.kt | 2 | ||||
-rw-r--r-- | test/data/functions/annotatedFunctionWithAnnotationParameters.kt | 7 | ||||
-rw-r--r-- | test/data/functions/function.kt | 5 | ||||
-rw-r--r-- | test/data/functions/functionWithAnnotatedParam.kt | 7 | ||||
-rw-r--r-- | test/data/functions/functionWithDefaultParameter.kt | 1 | ||||
-rw-r--r-- | test/data/functions/functionWithNoinlineParam.kt | 2 | ||||
-rw-r--r-- | test/data/functions/functionWithNotDocumentedAnnotation.kt | 2 | ||||
-rw-r--r-- | test/data/functions/functionWithParams.kt | 8 | ||||
-rw-r--r-- | test/data/functions/functionWithReceiver.kt | 11 | ||||
-rw-r--r-- | test/data/functions/genericFunction.kt | 5 | ||||
-rw-r--r-- | test/data/functions/genericFunctionWithConstraints.kt | 6 | ||||
-rw-r--r-- | test/data/functions/inlineFunction.kt | 2 |
12 files changed, 0 insertions, 58 deletions
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 <T> 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 <T : R, R> 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() { -} |