Insert empty lines after functions and properties (KT-4002)

#KT-4002 Fixed
This commit is contained in:
Nikolay Krasko
2014-10-10 17:50:37 +04:00
parent 22d33a5afa
commit b06b3ab4c4
54 changed files with 764 additions and 121 deletions
@@ -14,20 +14,25 @@ class C : A(), B {
override fun equals(other: Any?): Boolean {
<selection><caret>return super<A>.equals(other)</selection>
}
override fun hashCode(): Int {
return super<A>.hashCode()
}
override fun internalFun() {
super<A>.internalFun()
}
override val internalProperty: Int = 0
override fun protectedFun() {
super<A>.protectedFun()
}
override val protectedProperty: Int = 0
override fun publicFun() {
super<A>.publicFun()
}
override val publicProperty: Int = 0
override fun toString(): String {
return super<A>.toString()