Generate line numbers for function call parameters
Before this fix line numbers for function call arguments were not generated, so if argument was on another line than function call it was impossible to stop on argument line during debugging. Now line number for each argument is generated if necessary (another line than function call line). #KT-17144 Fixed
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package kt17144
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
val a = true
|
||||
1 + when (a) {
|
||||
true -> {
|
||||
println("foo")
|
||||
//Breakpoint!
|
||||
1
|
||||
}
|
||||
else -> {
|
||||
println("bar")
|
||||
2
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//RESUME: 1
|
||||
Reference in New Issue
Block a user