IDEA-69653 Complete Current Statement: Correct completion of 'init' section of 'for' statement

'Space after semicolon' code style property value is preserved during smart completion now
This commit is contained in:
Denis Zhdanov
2011-05-16 12:15:11 +04:00
parent bae2266f33
commit dd5c166257
8 changed files with 93 additions and 7 deletions
@@ -0,0 +1,6 @@
public class Foo {
void test(int i) {
for (int j = 1<caret>) {
}
}
}
@@ -0,0 +1,6 @@
public class Foo {
void test(int i) {
for (int j = 1;<caret>) {
}
}
}
@@ -0,0 +1,6 @@
public class Foo {
void test(int i) {
for (int j = 1<caret>) {
}
}
}
@@ -0,0 +1,6 @@
public class Foo {
void test(int i) {
for (int j = 1; <caret>) {
}
}
}