Stepping: do not write line numbers for call arguments
#KT-3080 Fixed
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
fun foo() {
|
||||
foo({
|
||||
val a = 1
|
||||
})
|
||||
|
||||
foo() {
|
||||
val a = 1
|
||||
}
|
||||
}
|
||||
|
||||
inline fun foo(f: () -> Unit) {
|
||||
val a = 1
|
||||
f()
|
||||
}
|
||||
|
||||
// 2 3 6 7 9 12 13 14
|
||||
Reference in New Issue
Block a user