Fix navigation from stack trace

JetExceptionFilter now correctly assigns hyperlinks to items of form
"namespace$...", found in exception stack traces

 #KT-2489 Fixed
 #KT-2941 Fixed
This commit is contained in:
Alexander Udalov
2012-10-24 19:40:53 +04:00
parent eb6da4bb8b
commit dd6d7d90bc
4 changed files with 87 additions and 0 deletions
@@ -0,0 +1,6 @@
fun a() {
val f = {
null!!
}
f()
}
@@ -0,0 +1,6 @@
fun main(args: Array<String>) {
val f = {
null!!
}
f()
}