Debugger: implement findExpression method correctly to make work Alt+Click in debugger

This commit is contained in:
Natalia Ukhorskaya
2014-04-11 12:42:38 +04:00
parent bd737a32fb
commit 45d78dae5a
28 changed files with 404 additions and 6 deletions
@@ -0,0 +1,11 @@
class Derived: Base() {
fun test() {
<caret>super.test()
}
}
open class Base {
fun test() {}
}
// EXPECTED: super.test()