normalize declaration: don't include tree next after space

This commit is contained in:
Anna.Kozlova
2017-11-29 11:42:51 +01:00
parent c082f34ded
commit 64364640a9
3 changed files with 17 additions and 5 deletions

View File

@@ -3,6 +3,8 @@ class Test {
{
String foo = "foo";//c1
//c2
//c3
String bar = "bar";
String baz = "baz";
}
}

View File

@@ -1,7 +1,9 @@
// "Split into separate declarations" "true"
class Test {
{
String foo <caret>= "foo",//c1
bar = "bar";//c2
String foo <caret>= "foo",
//c1
bar = "bar",//c2
baz = "baz"; //c3
}
}