Stepping: do not write line numbers for call arguments
#KT-3080 Fixed
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class A {
|
||||
fun foo(a: A) = a
|
||||
}
|
||||
|
||||
fun bar(a: A) = A()
|
||||
|
||||
fun foo() {
|
||||
val a = A()
|
||||
bar(
|
||||
bar(
|
||||
bar(a)
|
||||
)
|
||||
)
|
||||
|
||||
}
|
||||
|
||||
// 2 5 8 9 15
|
||||
Reference in New Issue
Block a user