Stepping: do not write line numbers for call arguments

#KT-3080 Fixed
This commit is contained in:
Natalia Ukhorskaya
2014-12-16 10:27:30 +03:00
parent c66af565f6
commit e35b960eb5
16 changed files with 219 additions and 17 deletions
@@ -0,0 +1,10 @@
fun foo() {
foo(
1 + 1
)
}
fun foo(i: Int) {
}
// 2 5 8