diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-10-28 15:23:50 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-10-29 11:57:24 +0100 |
commit | 36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc (patch) | |
tree | cab9e34dec64cce5cea97bbf9f1bd5e276ac42be /test/data | |
parent | 78455025203b911c855f7cfc0d75270dd7351199 (diff) | |
download | dokka-36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc.tar.gz dokka-36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc.tar.bz2 dokka-36f4b916bc956d8f5c9f6b55d295ea9a69c9f0bc.zip |
show inherited members in the list of class members
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/format/crossLanguage/kotlinExtendsJava/Bar.html | 11 | ||||
-rw-r--r-- | test/data/format/inheritedMembers.kt | 12 | ||||
-rw-r--r-- | test/data/format/inheritedMembers.md | 38 |
3 files changed, 61 insertions, 0 deletions
diff --git a/test/data/format/crossLanguage/kotlinExtendsJava/Bar.html b/test/data/format/crossLanguage/kotlinExtendsJava/Bar.html index 5b93d837..e7b139d8 100644 --- a/test/data/format/crossLanguage/kotlinExtendsJava/Bar.html +++ b/test/data/format/crossLanguage/kotlinExtendsJava/Bar.html @@ -22,5 +22,16 @@ </tr> </tbody> </table> +<h3>Inherited Functions</h3> +<table> +<tbody> +<tr> +<td> +<a href="test/test/-foo/xyzzy">xyzzy</a></td> +<td> +<code><span class="keyword">open</span> <span class="keyword">fun </span><span class="identifier">xyzzy</span><span class="symbol">(</span><span class="symbol">)</span><span class="symbol">: </span><span class="identifier">Unit</span></code></td> +</tr> +</tbody> +</table> </BODY> </HTML> diff --git a/test/data/format/inheritedMembers.kt b/test/data/format/inheritedMembers.kt new file mode 100644 index 00000000..2d0c4ca1 --- /dev/null +++ b/test/data/format/inheritedMembers.kt @@ -0,0 +1,12 @@ +open class Foo { + fun first() { + } + + val firstProp: Int = 0 +} + +class Bar : Foo() { + fun second() + + val secondProp: Int = 1 +} diff --git a/test/data/format/inheritedMembers.md b/test/data/format/inheritedMembers.md new file mode 100644 index 00000000..d58d3974 --- /dev/null +++ b/test/data/format/inheritedMembers.md @@ -0,0 +1,38 @@ +[test](test/index) / [Bar](test/-bar/index) + + +# Bar + +`class Bar : [Foo](test/-foo/index)` + + + +### Constructors + + +| [<init>](test/-bar/-init-) | `Bar()` | + + +### Properties + + +| [secondProp](test/-bar/second-prop) | `val secondProp: Int` | + + +### Inherited Properties + + +| [firstProp](test/-foo/first-prop) | `val firstProp: Int` | + + +### Functions + + +| [second](test/-bar/second) | `fun second(): Unit` | + + +### Inherited Functions + + +| [first](test/-foo/first) | `fun first(): Unit` | + |