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,9 @@
class Foo1 {
val x: String /// F, L
get() = "foo" /// M
}
class Foo2 { /// M
val x: String = "foo" /// F, L
get() = field + "x" /// M
}