Debugger: Skip inlined library frames on step over (KT-12016)
This commit is contained in:
+13
@@ -0,0 +1,13 @@
|
||||
package test
|
||||
|
||||
fun main() {
|
||||
val l = listOf(1, 2, 3, 4)
|
||||
l.map { element ->
|
||||
//Breakpoint!
|
||||
bar(element * 2)
|
||||
}
|
||||
}
|
||||
|
||||
fun bar(n: Int) = n
|
||||
|
||||
// STEP_OVER: 5
|
||||
Reference in New Issue
Block a user