Navigation: Fix navigation to library sources for Kotlin constructors
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user