doPostponedFormatting after formatting in completion after new (IDEA-CR-14717)

This commit is contained in:
peter
2016-10-20 18:16:36 +02:00
parent 05cf3e43e5
commit 9ffa29ca2d
4 changed files with 28 additions and 0 deletions
@@ -0,0 +1,9 @@
abstract class A {
A(int x){}
abstract void foo();
void test(A a){}
{
tes<caret>
}
}
@@ -0,0 +1,10 @@
abstract class A {
A(int x){}
abstract void foo();
void test(A a){}
{
test(new A(<selection>x<caret></selection>) {
});
}
}