Add indent before colon of super types list on new line (KT-13981, KT-5117)

#KT-13981 Fixed
 #KT-5117 Fixed

(cherry picked from commit dfea3af)
This commit is contained in:
Nikolay Krasko
2016-10-07 13:09:30 +03:00
committed by Nikolay Krasko
parent 944b9b5b6c
commit 6a72cebe88
9 changed files with 169 additions and 9 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ class D {
}
class E
: Some
: Some
class F
@@ -8,7 +8,7 @@ object Some2: A
object Some3
:
:
A
@@ -8,7 +8,7 @@ object Some2 :A
object Some3
:
:
A
+21
View File
@@ -0,0 +1,21 @@
interface Foo
class Bar
: Foo {
}
class Ob
: Foo
class C {
companion object
: Foo {
}
}
class Unfinished1
:
class Unfinished2
: {
}
+21
View File
@@ -0,0 +1,21 @@
interface Foo
class Bar
: Foo {
}
class Ob
: Foo
class C {
companion object
: Foo {
}
}
class Unfinished1
:
class Unfinished2
: {
}