IDEA-69656 Complete Current Statement: Provide support for completing 'condition' section of 'for' statement

'Update' section of 'for' statement may be smart-completed now
This commit is contained in:
Denis Zhdanov
2011-05-16 13:37:45 +04:00
parent 7c42e2d07c
commit ea998911e2
5 changed files with 114 additions and 55 deletions

View File

@@ -0,0 +1,6 @@
public class Foo {
void test(int i) {
for (int j = 1; j < 10<caret>) {
}
}
}