diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-10 19:42:30 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-02-10 19:42:30 +0100 |
commit | c5e98b1481c48954b6336916eca3644adb5f9372 (patch) | |
tree | 026df0fbc1aaf1f0fe96143d32571e8374825d75 /test/data | |
parent | ebbf265dbe9d5fe37e56c9baa567edaf21dd16fa (diff) | |
download | dokka-c5e98b1481c48954b6336916eca3644adb5f9372.tar.gz dokka-c5e98b1481c48954b6336916eca3644adb5f9372.tar.bz2 dokka-c5e98b1481c48954b6336916eca3644adb5f9372.zip |
fix links to supertypes
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/format/typeLink.html | 24 | ||||
-rw-r--r-- | test/data/format/typeLink.kt | 5 |
2 files changed, 29 insertions, 0 deletions
diff --git a/test/data/format/typeLink.html b/test/data/format/typeLink.html new file mode 100644 index 00000000..3f83dbda --- /dev/null +++ b/test/data/format/typeLink.html @@ -0,0 +1,24 @@ +<HTML> +<HEAD> +<title>test / Bar</title> +</HEAD> +<BODY> +<a href="out.html">test</a> / <a href="out.html"></a> / <a href="out.html">Bar</a><br/> +<br/> +<h1>Bar</h1> +<code><span class="keyword">class </span><span class="identifier">Bar</span><span class="symbol"> : </span><a href="out.html"><span class="identifier">Foo</span></a></code><br/> +<br/> +<br/> +<h3>Constructors</h3> +<table> +<tbody> +<tr> +<td> +<a href="out.html"><init></a></td> +<td> +<code><span class="keyword">public</span> <span class="identifier">Bar</span><span class="symbol">(</span><span class="symbol">)</span></code></td> +</tr> +</tbody> +</table> +</BODY> +</HTML> diff --git a/test/data/format/typeLink.kt b/test/data/format/typeLink.kt new file mode 100644 index 00000000..966e020e --- /dev/null +++ b/test/data/format/typeLink.kt @@ -0,0 +1,5 @@ +class Foo() { +} + +class Bar(): Foo { +} |