Debugger: allow evaluate expression in constructors

This commit is contained in:
Natalia Ukhorskaya
2015-07-24 12:24:50 +03:00
parent e423e99253
commit 519c2784ff
12 changed files with 128 additions and 0 deletions
@@ -0,0 +1,6 @@
class A(a: Int, val a1: Int) {
<caret>constructor(b: Int): this(b, b) {}
val c = 1
}