fe328f8c7a
1) Trim unused spaces in annotations 2) Rewrote fq name rendering 3) Added annotations to for loop variable 4) Added type arguments render along to type parameters in functions
13 lines
203 B
Kotlin
Vendored
13 lines
203 B
Kotlin
Vendored
class WithInit(x: Int) {
|
|
// Int
|
|
// │
|
|
val x: Int
|
|
|
|
init {
|
|
// val (WithInit).x: Int
|
|
// │ WithInit.<init>.x: Int
|
|
// │ │
|
|
this.x = x
|
|
}
|
|
}
|