IDEA-62753 Completing method call with ';' when pair bracket autoinsertion is off

This commit is contained in:
peter.gromov
2010-12-15 18:54:42 +03:00
parent e457bfc021
commit c09bf152d6
8 changed files with 58 additions and 52 deletions
@@ -3,6 +3,6 @@ class MyClass {
void foo(int a) {}
{
foo(<caret>)
foo(<caret>);
}
}
@@ -0,0 +1,5 @@
class A {
{
String c = new String();<caret>
}
}
@@ -0,0 +1,5 @@
class A {
{
String c = new Stri<caret>
}
}
@@ -0,0 +1,8 @@
class A {
void foo(String bar, int a) {}
String zoo(int b) {}
{
foo(zoo(), <caret>)
}
}
@@ -0,0 +1,8 @@
class A {
void foo(String bar, int a) {}
String zoo(int b) {}
{
foo(zo<caret>)
}
}