mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
split into declarations: preserve comments in normalizeDeclaration
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
// "Split into separate declarations" "true"
|
||||
class Test {
|
||||
{
|
||||
String foo = "foo";//c1
|
||||
//c2
|
||||
String bar = "bar";
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Split into separate declarations" "true"
|
||||
class Test {
|
||||
{
|
||||
String foo <caret>= "foo",//c1
|
||||
bar = "bar";//c2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user