Debugger: Skip inlined library frames on step over (KT-12016)

This commit is contained in:
Yan Zhulanow
2020-02-04 23:15:17 +09:00
parent 7490c229ac
commit dd33640238
12 changed files with 166 additions and 2 deletions
@@ -0,0 +1,11 @@
package test
fun main() {
val l = listOf(1, 2, 3, 4)
val res = l.foldRightIndexed(0) { index, elem, akk ->
//Breakpoint!
akk + index - 4
}
}
// STEP_OVER: 5