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:
committed by
Nikolay Krasko
parent
944b9b5b6c
commit
6a72cebe88
@@ -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
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
interface Foo
|
||||
|
||||
class Bar
|
||||
: Foo {
|
||||
}
|
||||
|
||||
class Ob
|
||||
: Foo
|
||||
|
||||
class C {
|
||||
companion object
|
||||
: Foo {
|
||||
}
|
||||
}
|
||||
|
||||
class Unfinished1
|
||||
:
|
||||
|
||||
class Unfinished2
|
||||
: {
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
interface Foo
|
||||
|
||||
class Bar
|
||||
: Foo {
|
||||
}
|
||||
|
||||
class Ob
|
||||
: Foo
|
||||
|
||||
class C {
|
||||
companion object
|
||||
: Foo {
|
||||
}
|
||||
}
|
||||
|
||||
class Unfinished1
|
||||
:
|
||||
|
||||
class Unfinished2
|
||||
: {
|
||||
}
|
||||
Reference in New Issue
Block a user