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
11 lines
331 B
Kotlin
Vendored
11 lines
331 B
Kotlin
Vendored
// Int
|
|
// │ orFourtyTwo.arg: Int?
|
|
// │ │ Int
|
|
// │ │ │
|
|
fun orFourtyTwo(arg: Int?) = arg ?: 42
|
|
|
|
// Int
|
|
// │ bang.arg: Int?
|
|
// │ │
|
|
fun bang(arg: Int?) = arg!!
|