shiraji
07/27/2016, 1:44 PMclass Lateinit {
lateinit var x: String
constructor() {
x = ""
}
constructor(a: Int): this() {
}
}
In this case, lateinit is unnecessary. How can I get constructor()’s body from constructor(a: Int)? getSecondaryConstructors()[0].getDelegationCall() only give me info about this().