extract method object to emulate debugging for anonymous classes, lambdas, etc

This commit is contained in:
Anna Kozlova
2014-09-03 22:34:57 +04:00
parent a53fd51217
commit 64422b696d
9 changed files with 327 additions and 43 deletions
@@ -0,0 +1,7 @@
class Sample {
void foo() {
<selection>int i = 0;
int j = 0;</selection>
System.out.println(i + j);
}
}