Fix indent in constructor delegate call (KT-7718)
(cherry picked from commit 5699b14) #KT-7718 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
5f2ba70745
commit
c3c5805a5f
@@ -66,4 +66,16 @@ class A {
|
||||
|
||||
constructor() : super() {
|
||||
}
|
||||
|
||||
constructor() :
|
||||
this()
|
||||
|
||||
constructor()
|
||||
: this()
|
||||
|
||||
constructor() :
|
||||
super()
|
||||
|
||||
constructor()
|
||||
: super()
|
||||
}
|
||||
@@ -36,4 +36,16 @@ constructor():this() {}
|
||||
constructor(): this ()
|
||||
|
||||
constructor(): super(){}
|
||||
|
||||
constructor():
|
||||
this()
|
||||
|
||||
constructor()
|
||||
:this()
|
||||
|
||||
constructor():
|
||||
super()
|
||||
|
||||
constructor()
|
||||
:super()
|
||||
}
|
||||
Reference in New Issue
Block a user