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:
Yan Zhulanow
2019-07-16 17:05:37 +09:00
parent a8d08815a6
commit 25fb77e7ad
19 changed files with 436 additions and 17 deletions
@@ -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