JetExceptionFilter handles correctly the case of several files with the same name
Extract the logic to DebuggerUtils.findSourceFileForClass() This fixes navigation from stack trace to a file, when there's more than one file with this name in this package in the project
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
package multiSameName
|
||||
|
||||
fun foo() {
|
||||
val f = { null!! }
|
||||
f()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
package multiSameName
|
||||
|
||||
fun foo(x: Int) {
|
||||
val f = { null!! }
|
||||
f()
|
||||
}
|
||||
Reference in New Issue
Block a user