IDEA-69972 Smart Complete Statement: Leave code block if the action is called for the complete statement

This commit is contained in:
Denis Zhdanov
2011-05-20 18:16:34 +04:00
parent 3db9975ca2
commit 0e58d431cd
11 changed files with 159 additions and 45 deletions
@@ -0,0 +1,7 @@
public class Foo {
void test(int i) {
if (i > 1) {
i <caret>= 1;
}
}
}