Formatter: Add blank line before class/object declaration inside of declaration body

This commit is contained in:
Alexey Sedunov
2015-07-17 17:41:11 +03:00
parent 16ec066437
commit d23da408a8
6 changed files with 116 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
class A { // abc
object B
}
class A { object B {}
}
class A { object B {
}
}
fun foo() { // abc
object B
}
fun foo() { object B {}
}
fun foo() { object B {
}
}