Navigation: Fix navigation to library sources for Kotlin constructors

This commit is contained in:
Alexey Sedunov
2015-06-08 19:07:41 +03:00
parent e2d758463f
commit ba0000dde1
5 changed files with 20 additions and 4 deletions
@@ -1,6 +1,8 @@
import testData.libraries.*
val x: ClassWithConstructor = ClassWithConstructor("abc", 239)
val xx: ClassWithConstructor = ClassWithConstructor("abc")
// main.kt
//public class <1><2>ClassWithConstructor(val a: String, b: Any)
//public class <1><3>ClassWithConstructor<2>(val a: String, b: Any) {
// <4>constructor(a: String): this(a, a)
@@ -17,6 +17,6 @@ fun foo() {
// return this
//}
//
//public class <2>Pair<A, B>(val first: A, val second: B)
//public class Pair<A, B><2>(val first: A, val second: B)
//
//public val <T> Pair<T, T>.<3>exProp : String