Fix navigate to super declaration line marker tooltip

Don't show overridden function signature each time, show only where it's declared
This commit is contained in:
Nikolay Krasko
2014-07-25 02:40:36 +04:00
parent 6a714436f2
commit 6aa5e53a00
7 changed files with 57 additions and 55 deletions
@@ -9,5 +9,5 @@ open class <lineMarker></lineMarker>C(b : B) : B by b, A {
}
class D(b : B) : C(b) {
override fun <lineMarker descr="<b>internal</b> <b>open</b> <b>fun</b> f(): kotlin.Unit <i>defined in</i> D<br/>overrides<br/><b>internal</b> <b>open</b> <b>fun</b> f(): kotlin.Unit <i>defined in</i> A"></lineMarker>f() {}
override fun <lineMarker descr="Overrides function in 'A'"></lineMarker>f() {}
}