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/format | |
| 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/format')
115 files changed, 0 insertions, 1549 deletions
diff --git a/test/data/format/accessor.kt b/test/data/format/accessor.kt deleted file mode 100644 index 5a4d1742..00000000 --- a/test/data/format/accessor.kt +++ /dev/null @@ -1,5 +0,0 @@ -class C() { - var x: String - /** The getter returns an empty string. */ get() = "" - /** The setter does nothing. */ set(value) { } -} diff --git a/test/data/format/accessor.md b/test/data/format/accessor.md deleted file mode 100644 index 8279f452..00000000 --- a/test/data/format/accessor.md +++ /dev/null @@ -1,18 +0,0 @@ -[test](test/index) / [C](test/-c/index) / [x](test/-c/x) - - -# x - -`var x: String` -**Getter** - -The getter returns an empty string. - - -**Setter** - -The setter does nothing. - - - - diff --git a/test/data/format/annotatedTypeParameter.kt b/test/data/format/annotatedTypeParameter.kt deleted file mode 100644 index cc3bfc1a..00000000 --- a/test/data/format/annotatedTypeParameter.kt +++ /dev/null @@ -1,2 +0,0 @@ -public fun <E> containsAll(elements: Collection<@UnsafeVariance E>): @UnsafeVariance E { -} diff --git a/test/data/format/annotatedTypeParameter.md b/test/data/format/annotatedTypeParameter.md deleted file mode 100644 index 7d26a162..00000000 --- a/test/data/format/annotatedTypeParameter.md +++ /dev/null @@ -1,8 +0,0 @@ -[test](test/index) / [containsAll](test/contains-all) - - -# containsAll - -`fun <E> containsAll(elements: Collection<@UnsafeVariance E>): @UnsafeVariance E` - - diff --git a/test/data/format/annotationClass.kt b/test/data/format/annotationClass.kt deleted file mode 100644 index 89d494fb..00000000 --- a/test/data/format/annotationClass.kt +++ /dev/null @@ -1 +0,0 @@ -annotation class fancy diff --git a/test/data/format/annotationClass.md b/test/data/format/annotationClass.md deleted file mode 100644 index 03548aa3..00000000 --- a/test/data/format/annotationClass.md +++ /dev/null @@ -1,14 +0,0 @@ -[test](test/index) / [fancy](test/fancy/index) - - -# fancy - -`annotation class fancy` - - - -### Constructors - - -| [<init>](test/fancy/-init-) | `fancy()` | - diff --git a/test/data/format/annotationParams.kt b/test/data/format/annotationParams.kt deleted file mode 100644 index f259a740..00000000 --- a/test/data/format/annotationParams.kt +++ /dev/null @@ -1 +0,0 @@ -@JvmName("FFF") fun f() {} diff --git a/test/data/format/annotationParams.md b/test/data/format/annotationParams.md deleted file mode 100644 index 8cdd6e96..00000000 --- a/test/data/format/annotationParams.md +++ /dev/null @@ -1,8 +0,0 @@ -[test](test/index) / [f](test/f) - - -# f - -`@JvmName("FFF") fun f(): Unit` - - diff --git a/test/data/format/annotations.kt b/test/data/format/annotations.kt deleted file mode 100644 index 57f76249..00000000 --- a/test/data/format/annotations.kt +++ /dev/null @@ -1,6 +0,0 @@ -data class Foo { - inline fun bar(noinline notInlined: () -> Unit) { - } - - inline val x: Int -} diff --git a/test/data/format/annotations.md b/test/data/format/annotations.md deleted file mode 100644 index b898d55c..00000000 --- a/test/data/format/annotations.md +++ /dev/null @@ -1,26 +0,0 @@ -[test](test/index) / [Foo](test/-foo/index) - - -# Foo - -`data class Foo` - - - -### Constructors - - -| [<init>](test/-foo/-init-) | `Foo()` | - - -### Properties - - -| [x](test/-foo/x) | `val x: Int` | - - -### Functions - - -| [bar](test/-foo/bar) | `fun bar(notInlined: () -> Unit): Unit` | - diff --git a/test/data/format/bracket.html b/test/data/format/bracket.html deleted file mode 100644 index 5630073d..00000000 --- a/test/data/format/bracket.html +++ /dev/null @@ -1,14 +0,0 @@ -<HTML> -<HEAD> -<title>test / foo</title> -</HEAD> -<BODY> -<a href="test/index">test</a> / <a href="test/foo">foo</a><br/> -<br/> -<h1>foo</h1> -<code>< |
