Converter:

Preserve white spaces for top members (classes, package statements, comments)
This commit is contained in:
Pavel Talanov
2013-12-09 19:59:49 +04:00
committed by Pavel V. Talanov
parent 098a80a2af
commit d69c61c972
101 changed files with 162 additions and 34 deletions
@@ -21,6 +21,7 @@ class Test() : Base() {
super.finalize()
}
}
class Base() {
public fun hashCode(): Int {
return System.identityHashCode(this)
@@ -21,6 +21,7 @@ open class Test() : Base() {
super.finalize()
}
}
open class Base() {
public open fun hashCode(): Int {
return System.identityHashCode(this)
@@ -2,10 +2,12 @@ class A() {
fun foo() {
}
}
class B() : A() {
override fun foo() {
}
}
class C() : B() {
override fun foo() {
}
@@ -2,10 +2,12 @@ open class A() {
open fun foo() {
}
}
open class B() : A() {
override fun foo() {
}
}
open class C() : B() {
override fun foo() {
}