Debugger: Fix breakpoint firing in '$suspendImpl' (KT-27645)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package suspendImpl
|
||||
|
||||
suspend fun main() {
|
||||
Foo().foo()
|
||||
}
|
||||
|
||||
open class Foo {
|
||||
open fun foo() {
|
||||
//Breakpoint!
|
||||
val a = 5
|
||||
val b = 6
|
||||
val c = 7
|
||||
}
|
||||
}
|
||||
|
||||
// STEP_OVER: 2
|
||||
@@ -0,0 +1,10 @@
|
||||
LineBreakpoint created at suspendImpl.kt:10
|
||||
Run Java
|
||||
Connected to the target VM
|
||||
suspendImpl.kt:10
|
||||
suspendImpl.kt:11
|
||||
suspendImpl.kt:12
|
||||
Disconnected from the target VM
|
||||
|
||||
Process finished with exit code 0
|
||||
|
||||
Reference in New Issue
Block a user