Create From Usage: Do not generate unnecessary/skip necessary empty lines

This commit is contained in:
Alexey Sedunov
2014-11-12 15:49:06 +03:00
parent 2e7cbab453
commit c487cc7838
123 changed files with 141 additions and 154 deletions
@@ -7,4 +7,4 @@ class Foo: A(1, "2") {
open class A(i: Int, s: String) {
}
}
@@ -2,7 +2,6 @@
package p
class X {
open class A(i: Int, s: String) {
}
@@ -7,4 +7,4 @@ class Foo: p.A(1, "2") {
open class A(i: Int, s: String) {
}
}
@@ -11,4 +11,4 @@ class Foo: A(abc = 1, ghi = "2", def = B()) {
open class A(abc: Int, ghi: String, def: B) {
}
}
@@ -7,4 +7,4 @@ class Foo: A<Int, String>(1, "2") {
open class A<T, U>(t: T, u: U) {
}
}
@@ -7,4 +7,4 @@ class Foo: A {
trait A {
}
}