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
566 B
Kotlin
Vendored
13 lines
566 B
Kotlin
Vendored
// collections/Collection<Int>
|
|
// │ Boolean
|
|
// │ │
|
|
fun foo(x: Int, y: Int, c: Collection<Int>) =
|
|
// foo.x: Int
|
|
// │ fun (collections/Collection<Int>).contains(Int): Boolean
|
|
// │ │ foo.c: collections/Collection<Int>
|
|
// │ │ │ foo.y: Int
|
|
// │ │ │ │ fun (collections/Collection<Int>).contains(Int): Boolean
|
|
// │ │ │ │ │ foo.c: collections/Collection<Int>
|
|
// │ │ │ │ │ │
|
|
x in c && y !in c
|