Debugger: Add breakpoint applicability tests
This commit adds a number of tests that check breakpoint placing behavior, and an inline action that work the same way as tests.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package simple
|
||||
|
||||
fun main() { /// M
|
||||
val a = 5 /// L
|
||||
foo(a) /// L
|
||||
} /// L
|
||||
|
||||
fun foo(a: Int) { /// M
|
||||
val b = 6 /// L
|
||||
} /// L
|
||||
Reference in New Issue
Block a user