Code Insight: Format generated declarations

#KT-11176 Fixed
(cherry picked from commit 3641ad6)
This commit is contained in:
Alexey Sedunov
2016-06-30 15:02:14 +03:00
parent a33f946c14
commit 3ba776fffa
51 changed files with 57 additions and 69 deletions
@@ -3,7 +3,6 @@ open class Base()
class Creation {
constructor(f: Int)
constructor()
}
val v = Creation()
@@ -5,7 +5,6 @@ open class Base(val f: Int)
class Creation: Base {
constructor(f: Int): super(f)
constructor() : super(<caret>)
}
val v = Creation()
@@ -3,7 +3,6 @@
class CtorSecondary() {
constructor(p: Int) : this()
constructor<caret>(i: Int, i1: Int)
}